/* Map Container */
.map-container {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f0f0f0;
    position: relative;
}

/* Stat Cards */
.stat-card {
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-right: 15px;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-title {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
}

/* Region-specific Card Styles */
.card-tomohon { border-left: 4px solid #3498db; background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(255, 255, 255, 0.9)); }
.stat-icon-tomohon { background: linear-gradient(135deg, #3498db, #2980b9); }

.card-selatan { border-left: 4px solid #e74c3c; background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(255, 255, 255, 0.9)); }
.stat-icon-selatan { background: linear-gradient(135deg, #e74c3c, #c0392b); }

.card-tengah { border-left: 4px solid #e0e0e0; background: linear-gradient(135deg, rgba(245, 245, 245, 0.9), rgba(255, 255, 255, 0.95)); }
.stat-icon-tengah { background: linear-gradient(135deg, #f5f5f5, #e0e0e0); color: #757575; box-shadow: inset 0 0 10px rgba(0,0,0,0.05); }

.card-utara { border-left: 4px solid #f39c12; background: linear-gradient(135deg, rgba(243, 156, 18, 0.1), rgba(255, 255, 255, 0.9)); }
.stat-icon-utara { background: linear-gradient(135deg, #f39c12, #e67e22); }

.card-barat { border-left: 4px solid #9b59b6; background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(255, 255, 255, 0.9)); }
.stat-icon-barat { background: linear-gradient(135deg, #9b59b6, #8e44ad); }

.card-timur { border-left: 4px solid #1abc9c; background: linear-gradient(135deg, rgba(26, 188, 156, 0.1), rgba(255, 255, 255, 0.9)); }
.stat-icon-timur { background: linear-gradient(135deg, #1abc9c, #16a085); }

/* Map Controls */
.leaflet-marker-draggable { cursor: move !important; }
.coordinate-display {
    background: white;
    padding: 5px 10px;
    border-radius: 3px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
    font-size: 12px;
}
.leaflet-control-layers { background: rgba(255, 255, 255, 0.8); }

/* Responsive */
@media (max-width: 768px) {
    .stat-card {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    .stat-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
