body {
    background-color: #f4f7fb;
    font-family: Arial, sans-serif;
}

.login-bg {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
}

.top-navbar {
    background: linear-gradient(90deg, #0d6efd, #6610f2);
}

.sidebar {
    min-height: 100vh;
    background: linear-gradient(180deg, #1e293b, #0f172a);
}

.sidebar .nav-link {
    border-radius: 10px;
    padding: 10px 12px;
    transition: 0.3s;
}

.sidebar .nav-link:hover {
    background: rgba(255,255,255,0.12);
}

.dashboard-card {
    border-radius: 16px;
    background: #fff;
}

.card {
    border-radius: 16px;
}

.page-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border: none;
}

.table thead th {
    background: #0f172a;
    color: #fff;
    vertical-align: middle;
}

.badge-status-active {
    background: #198754;
}

.badge-status-inactive {
    background: #dc3545;
}

.form-label {
    font-weight: 600;
}

.btn-action {
    padding: 5px 10px;
    border-radius: 8px;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.info-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 14px;
}




