.navbar-brand img {
    height: 40px;
    width: auto;
}

.navbar-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    color: #333;
}

 body {
     background-color: #f8f9fa;
 }
.page-header {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c23 100%);
    color: white;
    padding: 0.75rem 0;
    margin-bottom: 0;
}
.page-header h1 {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}
.page-header p {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}
.region-links {
    font-size: 0.9rem;
}
.region-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
}
.region-links a:hover {
    opacity: 1;
    text-decoration: underline;
}
.region-links .separator {
    margin: 0 0.75rem;
    opacity: 0.6;
}
.main-content {
    display: flex;
    height: calc(100vh - 100px);
    min-height: 500px;
}
.store-list-container {
    width: 400px;
    min-width: 350px;
    background: white;
    border-right: 1px solid #dee2e6;
    display: flex;
    flex-direction: column;
}
.search-box {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    background: #f8f9fa;
}
.store-list {
    flex: 1;
    overflow-y: auto;
}
.store-card {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s;
}
.store-card:hover {
    background-color: #f8f9fa;
}
.store-card.active {
    background-color: #e8f5e9;
    border-left: 4px solid #4a7c23;
}
.store-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.25rem;
}
.store-address {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.store-phone {
    color: #4a7c23;
    font-weight: 500;
}
.store-phone a {
    color: #4a7c23;
    text-decoration: none;
}
.store-phone a:hover {
    text-decoration: underline;
}
.store-buttons {
    margin-top: 0.75rem;
}
.store-buttons .btn {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
}
.btn-map {
    background-color: #4a7c23;
    border-color: #4a7c23;
    color: white;
}
.btn-map:hover {
    background-color: #3d6a1c;
    border-color: #3d6a1c;
    color: white;
}
.btn-directions {
    background-color: #ff6b35;
    border-color: #ff6b35;
    color: white;
}
.btn-directions:hover {
    background-color: #e55a2b;
    border-color: #e55a2b;
    color: white;
}
.map-container {
    flex: 1;
    position: relative;
}
#map {
    width: 100%;
    height: 100%;
}
.no-results {
    padding: 2rem;
    text-align: center;
    color: #666;
}
.store-count {
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    font-size: 0.85rem;
    color: #666;
}
.leaflet-popup-content-wrapper {
    border-radius: 8px;
}
.leaflet-popup-content {
    margin: 12px 16px;
    min-width: 200px;
}
.popup-store-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.popup-address {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.popup-phone {
    color: #4a7c23;
    margin-bottom: 0.75rem;
}
.popup-phone a {
    color: #4a7c23;
    text-decoration: none;
}
.store-website {
    margin-top: 0.5rem;
}
.store-website a {
    color: #0d6efd;
    text-decoration: none;
    font-size: 0.85rem;
}
.store-website a:hover {
    text-decoration: underline;
}

/* Custom marker styles */
.custom-marker {
    background-color: #ff6b35;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
        height: auto;
    }
    .store-list-container {
        width: 100%;
        min-width: auto;
        max-height: 50vh;
    }
    .map-container {
        height: 50vh;
        min-height: 300px;
    }
}