/* Axom Relief - Main Styles */
.hero-section {
    min-height: 300px;
    display: flex;
    align-items: center;
}

.stat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.update-item:last-child {
    border-bottom: none !important;
}

#reliefMap {
    border-radius: 0 0 8px 8px;
}

.custom-div-icon {
    background: none;
    border: none;
}

.quick-link {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.sidebar .nav-link.active {
    background-color: #0d6efd !important;
    color: white !important;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 200px;
        padding: 2rem 0 !important;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .btn-lg {
        font-size: 1rem;
        padding: 0.75rem;
    }
    
    .sidebar {
        height: auto;
    }
}