@media (max-width: 768px) { /* Bildschirmbreite anpassen, falls nötig */
    #fh5co-intro .row {
        flex-direction: column;
        padding: 0 20px; /* Abstand zu den Bildschirmrändern */
    }

    .fh5co-block {
        width: 100%; /* Volle Breite innerhalb des Containers */
        margin-bottom: 20px; /* Abstand zwischen den Kästen */
    }
}

.fh5co-person, .fh5co-block, input, button {
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    border-radius: 7px;
}

#fh5co-intro .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Abstand zwischen den Spalten */
}

.fh5co-block {
    flex: 1; /* Alle Spalten gleich breit */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Alle Blöcke gleich hoch */
    overflow: hidden; /* Verhindert, dass Inhalte über die abgerundeten Kanten hinaus sichtbar sind */
}

.fh5co-text {
    flex-grow: 1; /* Text gleichmäßig verteilen */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fh5co-block .btn {
    margin-top: auto; /* Button immer unten platzieren */
}

#imprint {
    font-size: small;
    color: #111;
}
h3 {
    font-weight: 350;
    font-size: 17pt;
}

h3 span {
    font-weight: 250;
}

.required {
    font-size: small;
}

.results input {
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            padding: 10px;
            background-color: transparent;
            outline: none;
            font-size: 16px;
            text-align: center;
            width: 200px;
            color: #fff;
        }

.results input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.results button {
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 10px;
    background-color: transparent;
    outline: none;
    font-size: 16px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-left: 10px;
}

.results button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #000;
}

/* Responsive layout for Ergebnisse abrufen section */
.results {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
}

.results input {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
}

.results button {
    flex-shrink: 0;
    margin-left: 0 !important; /* Override inline margin */
}

@media (max-width: 576px) {
    .results {
        flex-direction: column;
        align-items: stretch;
    }
    
    .results input {
        width: 100%;
        max-width: none;
        margin-bottom: 10px;
    }
    
    .results button {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .results button:last-child {
        margin-bottom: 0;
    }
}

/* Custom styles for the audio player */
audio {
    width: 100%;
    max-width: 700px; /* Increased max-width */
    margin-top: 25px; /* Slightly increased margin */
    margin-bottom: 25px; /* Added bottom margin for spacing */
    border-radius: 10px; /* Slightly larger border-radius */
    border: 1px solid #ccc; /* Slightly more visible border */
    box-shadow: 0 4px 8px rgba(0,0,0,0.15); /* Slightly more pronounced shadow */
    display: block; /* Ensure it takes up block space for centering if needed */
    margin-left: auto;
    margin-right: auto;
    /* Attempt to make controls larger - direct height is tricky.
       Scaling can work, but might affect layout.
       Adjust transform: scale() as needed, or remove if it causes issues. */
    /* transform: scale(1.1); */ /* Example: Scale by 10% - uncomment to test */
}

/* Style for the audio controls - browser-specific styling can be limited */
audio::-webkit-media-controls-panel {
    background-color: #f0f0f0; /* Slightly different background */
    color: #222; /* Darker text/icons */
    border-radius: 9px; /* Match audio element's border-radius */
    padding: 10px 5px; /* Increase padding to make controls appear taller */
}

audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-mute-button,
audio::-webkit-media-controls-volume-slider-container,
audio::-webkit-media-controls-timeline-container,
audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
    /* Attempt to increase size of individual control elements if possible */
    /* This level of control is highly browser-dependent */
    transform: scale(1.1); /* Slightly enlarge icons and text */
}


audio::-moz-media-controls {
    background-color: #f0f0f0;
    color: #222;
    border-radius: 9px;
    padding: 10px 5px; /* Increase padding */
}

/* You might need to add more vendor prefixes or specific selectors
   for other browsers if the default appearance is not satisfactory.
   Styling of audio elements is notoriously inconsistent across browsers. */