[x-cloak] {
    display: none !important;
}

/* Location Finder Styles */
.rlm-location-finder {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Controls Section */
.rlm-controls {
    margin-bottom: 20px;
    padding: 0px;
    background: var(--colour-primary);
    border-radius: 0;
}

.rlm-category-filter {
    margin-bottom: 15px;
}

.rlm-category-filter label {
    display: inline-block;
    margin-right: 10px;
    font-weight: 600;
}

.rlm-category-filter select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    min-width: 200px;
}

.rlm-search-controls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.rlm-address-search {
    display: flex;
    gap: 10px;
    flex: 1;
    min-width: 300px;
}

.rlm-address-search input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.rlm-search-btn,
.rlm-location-btn {
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.rlm-search-btn:hover,
.rlm-location-btn:hover {
    background: #005177;
}

.rlm-location-btn {
    background: transparent;
}

.rlm-location-btn:hover {
    background: transparent;
}

/* Container Layout */
.rlm-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 100px;
    row-gap: 100px;
    margin-top: 20px;
}

@media (max-width: 992px) {
    .rlm-container {
        grid-template-columns: 1fr;
    }
}

/* Map Wrapper */
.rlm-map-wrapper {
    /* background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
}

#rlm-map {
    width: 100%;
    height: 600px;
}

/* Locations List */
.rlm-locations-list {
    background: transparent;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 0 0;
    max-height: 600px;
    overflow-y: auto;
}

.rlm-locations-list h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
    color: #333;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.rlm-no-locations {
    text-align: center;
    color: #666;
    padding: 20px 0;
}

/* Location Item */
.rlm-location-item {
    padding: 15px;
    margin-bottom: 15px;
    background: #FFF;
    border: 1px solid #ddd;
    border-radius: 0px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rlm-location-item:hover {
    background: #fff;
    border-color: #0073aa;
    box-shadow: 0 2px 6px rgba(0, 115, 170, 0.2);
}

.rlm-location-item h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: var(--colour-primary);
    font-family: var(--font-body);
    text-transform: none;
    letter-spacing: 0.0015em;
}

.rlm-location-details p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.6;
}

.rlm-location-details strong {
    display: inline-block;
    min-width: 60px;
    color: #333;
}

.rlm-address span,
.rlm-phone span,
.rlm-hours span {
    color: #666;
}

/* Info Window Styles */
.rlm-info-window h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: var(--colour-primary);
    font-family: var(--font-body);
    text-transform: none;
    letter-spacing: 0.0015em;
}

.rlm-info-window p {
    margin: 5px 0;
    font-size: 13px;
    line-height: 1.5;
}

.rlm-info-window strong {
    color: #333;
}

/* Scrollbar Styling */
.rlm-locations-list::-webkit-scrollbar {
    width: 8px;
}

.rlm-locations-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.rlm-locations-list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.rlm-locations-list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .rlm-search-controls {
        flex-direction: column;
    }

    .rlm-address-search {
        min-width: 100%;
        width: 100%;
    }

    .rlm-search-btn,
    .rlm-location-btn {
        width: 100%;
    }

    #rlm-map {
        height: 400px;
    }

    .rlm-locations-list {
        max-height: none;
    }
}


.rlm-address-search input[type="text"] {
    margin-bottom: 0px !important;
    border-bottom: 0px solid !important;
    border-radius: 0px;
    color: var(--colour-white);
    padding: 22px 10px 22px 30px;
}
.rlm-address-search input[type="text"]::placeholder {
    color: var(--colour-white);
    font-family: var(--font-body);
}
.rlm-location-btn {
    font-size: 0px;
}
.rlm-location-btn::after {
    content: '\f002';
    font-family: var(--font-fa);
    font-size: 12px;
    color: var(--colour-white);
}