/* Allgemeines Layout */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 1000px;
    width: 95%;
    padding: 20px;
}

/* Karte */
#map {
    height: 50vh;
    width: 100%;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Container für das Formular */
.form-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 25px;
    max-width: 600px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

/* Titel */
.form-box h2 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: bold;
    color: #222;
}

/* Label */
.form-box label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #444;
}

/* Eingabefelder */
.form-box input[type="text"],
.form-box textarea,
.form-box input[type="number"] {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
}

/* Textarea nicht skalierbar und feste Höhe */
.form-box textarea {
    resize: none;
    min-height: 100px;
}

/* Button */
.form-box button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    background: #007bff;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.form-box button:hover {
    background: #0056b3;
}

.disclaimer {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
    line-height: 1.4;
}

.disclaimer a {
    color: #0077cc;
    text-decoration: underline;
}

.disclaimer a:hover {
    color: #005fa3;
}

/* Deaktivierter Button grau */
.form-box button:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

/* Podcast Box */
.podcast-box {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.podcast-box h2 {
    margin-top: 0;
    text-align: center;
}

.podcast-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
}

.podcast-links a {
    display: inline-block;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.podcast-links img {
    height: 50px; /* Einheitliche Höhe */
    width: auto;
    display: block;
}

.podcast-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}