.elementor-2962 .elementor-element.elementor-element-af8fdf0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-457cd91 *//* Global Resets */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    height: 100vh;
    overflow: hidden;
    /* Prevent body scroll, handle inside containers */
}

/* Main Layout */
.main-wrapper {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #f4f4f4;
    /* Light grey background for outside context */
}

.locations-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    height: 85vh;
    /* Contain within viewport */
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

/* Left Panel */
.locations-panel {
    width: 400px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #eee;
}

.panel-header {
    background-color: #000000;
    color: #fff;
    padding: 40px 30px;
    flex-shrink: 0;
    /* Header doesn't shrink */
}

.panel-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.search-box {
    display: flex;
    gap: 10px;
}

.search-box input {
    flex-grow: 1;
    padding: 12px 15px;
    font-family: inherit;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    outline: none;
}


.search-box button {
    background-color: #0097D8;
    color: white;
    border: none;
    padding: 12px 25px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-box button:hover {
    background-color: #007bb0;
}

/* Locations List */
.locations-list-wrapper {
    flex-grow: 1;
    overflow-y: auto;
    padding: 0;
}

/* Custom Scrollbar */
.locations-list-wrapper::-webkit-scrollbar {
    width: 8px;
}

.locations-list-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.locations-list-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

#locations-list {
    list-style: none;
    padding-bottom: 20px;
}

.location-item {
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.location-item:hover {
    background-color: #f9f9f9;
}

.location-item.active {
    background-color: #e5f6fd;
    /* Very light blue tint */
    border-left: 5px solid #0097D8;
    padding-left: 25px;
    /* Adjust for border */
}

.location-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    color: #000;
    cursor: pointer;
}

.location-name:hover {
    color: #0097D8;
}

.location-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #555;
    margin-bottom: 12px;
}

.phone-icon {
    color: #0097D8;
    font-weight: bold;
}

.location-links {
    display: flex;
    gap: 15px;
}

.location-link {
    color: #0097D8;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.2s;
}

.location-link:hover {
    border-bottom: 1px solid #0097D8;
}

/* Right Panel: Map */
.map-panel {
    flex-grow: 1;
    position: relative;
    background-color: #e5e5e5;
}

#map {
    height: 100%;
    width: 100%;
}

/* Map Popup Styles */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
}

.leaflet-popup-content {
    margin: 15px;
    font-family: 'Poppins', sans-serif;
}

.popup-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.popup-link {
    display: inline-block;
    color: #0097D8;
    text-decoration: none;
    font-weight: 600;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 900px) {
    body {
        height: auto;
        overflow-y: auto;
    }

    .locations-container {
        flex-direction: column;
        height: auto;
        border-radius: 0;
        box-shadow: none;
    }

    .locations-panel {
        width: 100%;
        height: auto;
        border-right: none;
    }

    .locations-list-wrapper {
        max-height: 300px;
        /* Limit list height on mobile */
    }

    .map-panel {
        height: 400px;
        /* Fixed height for map on mobile */
    }
}/* End custom CSS */