.finderMap {
    width: 100%;
    height: 400px;
}

div#map-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

input#searchText {
    width: 16rem;
    height: 26px;
    padding: 6.5px;
    font-size: 1rem;
    border: 1px solid #bbb;
    border-radius: 4px;
}

button#searchButton {
    cursor: pointer;
    background: rgb(178 1 14);
    color: #fff;
    padding: 10.5px;
    font-size: 1rem;
    border-radius: 4px;
    border: none;
}

button#resetButton {
    cursor: pointer;
    background: rgb(211 211 211);
    color: #000;
    padding: 10.5px;
    font-size: 1rem;
    border-radius: 4px;
    border: none;
}

select#searchRadius {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #bbb;
    border-radius: 4px;
    background: white;
}

select#searchRadius, button#searchButton {
    width: auto; /* Passt die Breite an den Inhalt an */
    white-space: nowrap; /* Verhindert, dass Text umbricht */
}

#map {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}

div.cardsContainer {
    display: flex;
    flex-wrap: wrap;
}

div.cardItemOuter {
    width: 50%;
    /*height: 10rem;*/
}

div.cardItemInner {
    padding: 10px 5px;
}

div.cardItem {
    border-radius: 10px;
    padding: 10px;
    background: rgb(231 231 231);
    font-size: 1.1rem;
}

div.card-address-block {
    padding-left: 10px;
}

span.card-address-block-body {
    font-size: 1rem;
    display: block;
    margin-top: 10px;
}

div.cardItem:hover {
    /*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 1px 4px 0 rgba(0, 0, 0, 0.19);*/
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

}

a.card-telephone svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
}

a.card-telephone {
    text-decoration: none;
    color: #000;
}

img.logo-card {
    border: 1px solid #a9a9a9;
    width: 7rem;
}

img.logo-linked {
    min-width: 100px;
    max-width: 100px;
}

.card-address-block a {
    text-decoration: none;
    color: #000;
}

#content {
    padding-top: 10px;
}

.cardItemOuter {
    opacity: 0;
    animation: cardFadeIn 0.8s ease forwards;
    transform: scale(0.98);

}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* maps placemark */

img.logo-placemark {
    width: 6rem;
    height: 6rem;
    border: 1px solid #a9a9a9;
    margin-right: 10px;
}

.placemark-flex a {
    text-decoration: none;
    color: #000;
    font-size: 0.9rem;
}


@media (max-width: 1200px) {
    div.cardItemOuter {
        width: 50%;
        /*height: 10rem;*/
    }

}

@media (max-width: 768px) {
    div.cards {
        display: unset;
    }

    div.cardItemOuter {
        width: 100%;
    }
}
