.bg-gradient-main {
    min-height: 100vh;
    background: linear-gradient(135deg, #5a60ff, #a14bff);
}

.login-card {
    border-radius: 20px;
    max-width: 420px;
}

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffafbd, #ffc3a0);
    color: #fff;
    font-size: 26px;
}

.app-wrapper {
    min-height: 100vh;
}

.sidebar {
    width: 240px;
    background: #1f2933;
    color: #e5e7eb;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: white;
}

.sidebar-menu {
    padding: 0.5rem 0.75rem 1.5rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    transition: all 0.2s ease;
}

.sidebar-link:hover {
    background: rgba(148, 163, 184, 0.25);
}

.sidebar-link.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
}

.topbar {
    height: 64px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #f9fafb;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.25);
}

.main-content {
    background: #f3f4f6;
}

.card-stat {
    border-radius: 16px;
    border: none;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.badge-role {
    text-transform: capitalize;
}

/* Styling untuk User Management Page */
.bg-gradient-subtle {
    background: linear-gradient(135deg, #f0f4ff, #faf5ff) !important;
}

.form-control:focus,
.form-select:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.form-label {
    color: #1f2937;
}

.btn-outline-primary:hover {
    background-color: #6366f1;
    border-color: #6366f1;
}

.table tbody tr {
    transition: all 0.15s ease;
}

.table tbody tr:hover {
    background-color: #f9fafb;
}

.badge {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.4rem 0.6rem;
}

.card {
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12) !important;
}

code {
    font-size: 0.875rem;
    background-color: #f3f4f6 !important;
    color: #7c3aed;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

/* Alert Styling */
.alert {
    border: none;
    border-left: 4px solid;
    border-left-color: #6366f1;
    border-radius: 8px;
    background-color: #f0f4ff;
    color: #1f2937;
}

.alert-info {
    background-color: #f0f4ff;
    border-left-color: #6366f1;
    color: #1f2937;
}

.alert-warning {
    background-color: #fff3cd;
    border-left-color: #fbbf24;
    color: #78350f;
}

.alert-danger {
    background-color: #fee2e2;
    border-left-color: #ef4444;
    color: #7f1d1d;
}



