/* GLOBAL */
body {
    background: linear-gradient(120deg, #f4f6ff, #eefaf7);
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

/* SIDEBAR */
.sidebar {
    height: 100vh;
    background: #0d6efd;
    color: #fff;
}

.sidebar h4 {
    font-weight: bold;
}

.sidebar a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 6px;
    transition: 0.3s;
}

.sidebar a:hover {
    background: rgba(255,255,255,0.2);
}

/* CARD STAT */
.card-stat {
    border: none;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
    transition: 0.3s;
}

.card-stat:hover {
    transform: translateY(-5px);
}

/* TABLE */
.table {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.table th {
    background: #0d6efd;
    color: #fff;
}

/* BUTTON */
.btn {
    border-radius: 10px;
}

/* FORM */
.form-control {
    border-radius: 10px;
}

/* LOGIN */
.login-card {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,.2);
}

/* PRINT */
@media print {
    .btn, .sidebar {
        display: none;
    }
}
