@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600;700&display=swap');

/* Menerapkan font Open Sans ke seluruh elemen secara global */
body, h1, h2, h3, h4, h5, h6, p, a, span, div, button, input, select, textarea {
    font-family: 'Open Sans', sans-serif !important;
}

.jaringan-header {
    padding: 60px 0;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.jaringan-title {
    
    font-weight: 800;
    color: #1a3673; /* Biru Yamaha */
    letter-spacing: 1px;
    text-transform: uppercase;
}

.map-wrapper {
    border-top: 1px solid #ddd;
    background-color: #f8f9fa;
}

.sidebar-location {
    background: #fdfdfd;
    height: 600px;
    overflow-y: auto;
    border-right: 1px solid #eee;
}

/* Custom Scrollbar - Biru Yamaha */
.sidebar-location::-webkit-scrollbar {
    width: 6px;
}
.sidebar-location::-webkit-scrollbar-thumb {
    background: #1a3673; /* Biru Yamaha */
    border-radius: 10px;
}

.dealer-card {
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px; /* Jarak dari scrollbar */
}

/* Hover & Active State - Biru Yamaha */
.dealer-card:hover, 
.dealer-card.active {
    border-color: #1a3673;
    background: rgba(26, 54, 115, 0.05); /* Soft Blue Tint */
    box-shadow: 0 5px 15px rgba(26, 54, 115, 0.1);
}

.dealer-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a3673; /* Biru Yamaha */
    margin-bottom: 8px;
}

.dealer-addr {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.btn-direct {
    display: inline-block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #1a3673; /* Biru Yamaha */
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
}

.btn-direct i {
    margin-right: 5px;
}

.btn-direct:hover {
    color: #0d204a; /* Darker Blue on hover */
    text-decoration: underline;
}

/* Penyesuaian Iframe Peta */
#map-container {
    background: #eee;
    position: relative;
}