#map {
    height: calc(100vh - 78px);
    width: 100%;
    background: #faf7f7;
}

.leaflet-control-zoom {
    transition: margin-top 0.3s;
}


#search-expand-btn {
    background: none;
    border: 0;
    box-shadow: none;
    color: var(--bone-main);
    font-size: 0.9rem;
    padding: 8px 0;
    transition: color 0.2s;
    position: relative;
    font-weight: 400;
    display: flex;
    align-items: center;
    letter-spacing: 0.3px;
    gap: 0.25rem;
}

#search-expand-btn path {
    transition: stroke 0.2s;
}

#search-expand-btn:hover {
    color: var(--bronze-accent);
    cursor: pointer;
}

#search-expand-btn:hover path {
    stroke: var(--bronze-accent);
}

#search-bar {
    position: absolute;
    top: -20px;
    background: var(--dark-bg);
    z-index: 1000;
    transition: top 0.3s;
    right: 0;
    width: 100%;
}

#pin-search {
    border-radius: 25px;
    border: none;
    padding: 7px; 
    margin: 10px; 
    margin-top: 10px;
    margin-right: 25px;
    font-size: 16px;
    width: -moz-available;
    width: -webkit-fill-available;
}

#status-filters {
    color: var(--bone-main);
    letter-spacing: -0.3px;
    transition: color 0.2s;
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 10px;
}
#status-filters input {
    position: absolute;
    left: -9999px;
}
#status-filters label:hover {
    color: var(--bronze-accent);
}
#status-filters label:has(> input[type="radio"]:checked)  {
    text-decoration: underline;
    font-weight: bold;
}
#status-filters label:has(> input[type="radio"]:disabled)  {
    color: #B0B0B0;
}

#close-search-bar {
    position: absolute;
    padding-top: 15px;
    top: -6px;
    right: 7px;
    background: none;
    border: none;
    color: var(--bone-main);
    font-size: 1.5rem;
    transition: color 0.2s;
    font-family: arial;
}
#close-search-bar:hover {
    color: var(--bronze-accent);
}

/* Responsive */
@media (max-width: 850px) {
    #status-filters {
        font-size: 0.8rem;
    }
    #map {
    height: calc(100vh - 12px);
    }

    #search-bar {
        margin-top: 40px;
    }
}

