/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.04);
    border-radius: 0.5rem;
}

.table th {
    background-color: #f1f3f5;
    font-weight: 600;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

/* Sidebar for desktop, offcanvas for mobile */
.sidebar {
    min-height: calc(100vh - 56px);
    background-color: #fff;
    border-right: 1px solid #e9ecef;
}

.sidebar .nav-link {
    color: #495057;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    margin-bottom: 0.25rem;
}

.sidebar .nav-link:hover, .sidebar .nav-link.active {
    background-color: #e9ecef;
    color: #0d6efd;
}

@media print {
    .no-print {
        display: none !important;
    }
    body {
        background-color: #fff;
    }
    .card {
        box-shadow: none;
        border: none;
    }
}
