@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

h1, h2, h3, h4, h5, h6 {
    font-family: "Inter", sans-serif;
}

/* Modern card style */
.modern-card {
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.25s ease-in-out;
}

    .modern-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

/* Modern buttons */
.modern-btn {
    transition: all 0.2s;
}

    .modern-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

/* Dropdown button subtle style */
.btn-light {
    background-color: #f8f9fa;
    border: none;
}

    .btn-light:hover {
        background-color: #e9ecef;
    }

@media(width < 768px) {
    #logout-section-1, #dashboard-home {
        display: none;
    }
}

@media(width >= 768px) {
    #logout-section-2 {
        display: none;
    }
}