/* LAYOUT — main wrapper splits into two columns */
#lf-wrap {
    display: flex;
    height: 600px;
    border: 1px solid #D3D1C7;
    overflow: hidden;
    font-family: sans-serif;
}

/* LEFT PANEL — sidebar with list and dropdown */
#lf-sidebar {
    width: 50%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #D3D1C7;
    background: #9DDEAD;
}

/* REGION BAR */
#lf-region-bar {
    padding: 12px 16px;
    border-bottom: 1px solid #D3D1C7;
    background: #fff;
}

#lf-region-label {
    font-size: 14px;
    color: #1A1A18;
}

/* CITY PANEL */
#lf-city-panel {
    border-bottom: 1px solid #D3D1C7;
    background: #fff;
}

/* REGION SELECT — badge container */
#lf-region-select {
    width: 100%;
    cursor: pointer;
}

/* LIST — scrollable location cards */
#lf-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px;
    background-color: #E5F6EB;
}

.lf-empty {
    padding: 16px;
    color: #888780;
    font-size: 13px;
}

/* LOCATION CARD */
.lf-item {
    padding: 12px;
    border-bottom: 1px solid #f1efe82e;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lf-item strong {
    font-size: 14px;
    color: #0D0B0B;
    font-weight: 600;
}

.lf-item span {
    font-size: 12px;
    color: #0D0B0B;
}

/* BOOK BUTTON */
.lf-times-btn {
    margin-top: 6px;
    padding: 6px 14px;
    text-transform: uppercase;
    border-radius: 4px;
    background: #1C3133;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    align-self: flex-start;
    text-decoration: none;
    display: inline-block;
}

.lf-times-btn:hover {
    background: #155f58;
    color: white;
}

/* MAP — takes remaining 50% */
#lf-map {
    width: 50%;
    flex: 1;
    min-height: 350px;
}

/* MOBILE — stack vertically on small screens */
@media (max-width: 768px) {
    #lf-wrap {
        flex-direction: column;
        height: auto;
    }
    #lf-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #D3D1C7;
    }
    #lf-map {
        width: 100%;
        height: 350px;
    }
}