/* Membiarkan styling Filament berjalan normal */
/* Hanya styling yang ingin diubah */

/* Warna background login */
.fi-simple-layout {
    --fi-simple-bg: linear-gradient(135deg, #3b82f6, #1e40af);
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

/* Ukuran maksimum container login */
.fi-simple-main {
    max-width: 30rem;
}

/* Styling input custom */
.custom-input-class {
    border-radius: 0.375rem;
    border: 1px solid #e5e7eb;
}

.custom-input-class:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

/* Dashboard card styles */
.campus-stat-card {
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.campus-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.campus-stat-card.blue {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: white;
}

.campus-stat-card.green {
    background: linear-gradient(135deg, #34d399, #10b981);
    color: white;
}

.campus-stat-card.purple {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    color: white;
}

.campus-stat-card.orange {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
}
