.imp-map-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
.imp-map-wrapper {
    display: flex;
    gap: 0;
    min-height: 600px;
    background: #fff;
}

/* Sidebar - Danh sách bên trái */
.imp-sidebar {
    width: 200px;
    background: #fff;
    border-right: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.imp-nav-buttons {
    padding: 10px;
    text-align: center;
    border-bottom: 0px solid #e5e5e5;
}

.imp-nav-buttons:last-child {
    border-bottom: none;
    border-top: 0px solid #e5e5e5;
}

.imp-nav-btn {
    display: none;
    width: 40px;
    height: 40px;
    border: 2px solid #d4501e;
    background: white;
    color: #d4501e;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s;
}

.imp-nav-btn:hover {
    background: #d4501e;
    color: white;
}

.imp-locations-list {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

.imp-location-item {
    padding: 15px 20px;
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: all 0.3s;
    color: #333;
    font-size: 15px;
}

.imp-location-item:hover {
    background: #f5f5f5;
}

.imp-location-item.active {
    border-left-color: #d4501e;
    color: #d4501e;
    font-weight: 600;
    background: #fff5f2;
}

.imp-location-name {
    display: block;
}

/* Map Area - Bản đồ ở giữa */
.imp-map-area {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

.imp-map-image-wrapper {
    position: relative;
    max-width: 100%;
    width: 100%;
}

.imp-map-image {
    width: 100%;
    height: auto;
    display: block;
}

.imp-pins-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.imp-pin {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: 1;
}

.imp-pin:hover {
    transform: translate(-50%, -50%) scale(1.3);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.imp-pin.active {
    transform: translate(-50%, -50%) scale(1.4);
    z-index: 3;
    box-shadow: 0 4px 16px rgba(212, 80, 30, 0.6);
    border-width: 4px;
}

/* Content Panel - Nội dung bên phải */
.imp-content-panel {
    width: 450px;
    background: linear-gradient(135deg, #c54929 0%, #c54929 100%);
    color: white;
    padding: 50px 40px;
    flex-shrink: 0;
    overflow-y: auto;
    min-height: 600px;
}

.imp-content-display {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    transition: opacity 0.3s ease;
}

.imp-content-title {
    color: #f4c430;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 30px 0;
    line-height: 1.2;
}

.imp-content-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Stats Grid */
.imp-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.imp-stats-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.imp-stat-item {
    border-top: 2px solid rgba(244, 196, 48, 0.3);
    padding-top: 15px;
}

.imp-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-weight: 500;
}

.imp-stat-value {
    font-size: 30px;
    font-weight: 700;
    color: #f4c430;
    line-height: 1;
}

/* Date Note - Text nhỏ nghiêng */
.imp-date-note {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* Scrollbar cho sidebar */
.imp-locations-list::-webkit-scrollbar {
    width: 6px;
}

.imp-locations-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.imp-locations-list::-webkit-scrollbar-thumb {
    background: #d4501e;
    border-radius: 3px;
}

.imp-locations-list::-webkit-scrollbar-thumb:hover {
    background: #b03d15;
}

/* Animation cho pins */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 80, 30, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 80, 30, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 80, 30, 0);
    }
}

.imp-pin.active {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .imp-content-panel {
        width: 380px;
        padding: 40px 30px;
    }
    
    .imp-content-title {
        font-size: 30px;
    }
    
    .imp-stat-value {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .imp-map-wrapper {
        flex-direction: column;
    }
    
    .imp-sidebar {
        width: 100%;
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
    }
    
    .imp-nav-buttons {
        display: none;
    }
    
    .imp-locations-list {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0;
    }
    
    .imp-location-item {
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
    }
    
    .imp-location-item.active {
        border-left: none;
        border-bottom-color: #d4501e;
    }
    
    .imp-map-area {
        padding: 30px 20px;
    }
    
    .imp-content-panel {
        width: 100%;
        padding: 40px 20px;
    }
}

@media (max-width: 576px) {
    .imp-content-title {
        font-size: 24px;
    }
    
    .imp-stat-value {
        font-size: 28px;
    }
    
    .imp-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .imp-pin {
        width: 18px;
        height: 18px;
        border-width: 2px;
    }
    
    .imp-date-note {
        font-size: 12px;
    }
}