/* assets/css/style.css */

/* Import Google Font 'Poppins' */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa; /* Latar belakang clean */
}

/* Card dengan shadow halus & border radius (gaya modern) */
.card {
    border: none;
    border-radius: 0.75rem; /* Lebih bulat */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Tombol dengan style modern */
.btn-primary {
    background-color: #0d6efd; /* Biru Bootstrap standar */
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
    transform: translateY(-2px); /* Efek 'hover' halus */
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
}

/* Sidebar (Akan kita gunakan di Tahap 2) */
.sidebar {
    background-color: #111827; /* Warna gelap modern */
    color: white;
    min-height: 100vh;
}
.sidebar .nav-link {
    color: #adb5bd;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    margin: 0.25rem 0;
}
.sidebar .nav-link:hover, .sidebar .nav-link.active {
    background-color: #1f2937;
    color: white;
}