/* assets/style.css */
:root {
    --primary: #4361ee;
    --secondary: #3f37c9;
    --success: #4cc9f0;
    --light: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fb;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}
.card:hover {
    transform: translateY(-3px);
}

.btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 8px 20px;
}

.table th {
    font-weight: 600;
    background-color: #f8f9fa;
}

.list-group-item {
    border-left: 4px solid var(--primary);
}

/* Login page */
.login-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
}

/* Footer */
footer {
    background: linear-gradient(to right, var(--secondary), var(--primary));
}