/**
 * Copyright © Stockpile. All rights reserved.
 * Supplier Location Module Styles
 */

.supplier-location-section {
    margin: 2rem 0;
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.supplier-location-section .page-title {
    margin-bottom: 1.5rem;
    color: #333;
}

.supplier-map {
    width: 100%;
    height: 500px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.info-window-content {
    max-width: 200px;
}

.info-window-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #333;
}

.info-window-content p {
    margin: 0 0 0.25rem 0;
    font-size: 0.9rem;
    color: #666;
}

.info-window-content small {
    font-size: 0.8rem;
    color: #999;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .supplier-location-section {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .supplier-map {
        height: 400px;
    }
}

/* Hide the close button on info windows - multiple selectors to ensure it works */
.gm-style-iw-c .gm-ui-hover-effect {
    display: none !important;
}

.gm-style-iw-chr button {
    display: none !important;
}

.gm-style-iw-c button[title="Close"] {
    display: none !important;
}

.gm-style-iw-tc button {
    display: none !important;
}

button[aria-label="Close"] {
    display: none !important;
}

.gm-style .gm-style-iw-c button {
    display: none !important;
}