/* --- Simple Outlet Locator Styles --- */
.outlet-locator-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-family: sans-serif;
}

.outlet-column-left {
    flex: 1;
    min-width: 300px;
}

.outlet-column-right {
    flex: 2;
    min-width: 300px;
    min-height: 450px;
}

#outlet-search, #find-nearest-btn {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Important for padding */
}

#find-nearest-btn {
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    font-weight: bold;
}

#find-nearest-btn:hover {
    background-color: #0056b3;
}

#outlet-list {
    max-height: 450px;
    overflow-y: auto;
	background: white;
}

.outlet-item {
    padding: 15px;
    border: 1px solid #eee;
    margin-bottom: -1px; /* Creates a stacked border effect */
    cursor: pointer;
    transition: background-color 0.3s;
}

.outlet-item:hover, .outlet-item.active {
    background-color: #f0f8ff; /* Light blue */
}

.outlet-item h3 {
    margin: 0 0 5px 0;
    font-size: 1.1em;
}

.outlet-item p {
    margin: 0;
    font-size: 0.9em;
    color: #555;
}

.outlet-item .distance {
    font-weight: bold;
    color: #28a745;
}

#outlet-map-display iframe {
    width: 100%;
    height: 100%;
    border: 0;
    min-height: 450px;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    .outlet-locator-container {
        flex-direction: column;
    }
}