/* Custom styles for School Requisition System */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.min-vh-100 {
    min-height: 100vh;
}

.card {
    border: none;
    border-radius: 10px;
}

.card.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.navbar-brand {
    font-weight: 600;
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.btn {
    border-radius: 5px;
    font-weight: 500;
}

.item-row {
    background-color: #f8f9fa;
    transition: background-color 0.2s;
}

.item-row:hover {
    background-color: #e9ecef;
}

.badge {
    font-size: 0.85em;
    padding: 0.4em 0.6em;
}

.modal-content {
    border-radius: 10px;
}

.list-group-item {
    border-left: 3px solid transparent;
}

.list-group-item:hover {
    background-color: #f8f9fa;
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
    }
    
    .card {
        border: 1px solid #000;
        page-break-inside: avoid;
    }
    
    table {
        page-break-inside: avoid;
    }
}

/* Notification styles */
.notification-unread {
    background-color: #e7f3ff;
    border-left: 4px solid #0d6efd;
}

/* Loading spinner */
.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .table-responsive {
        font-size: 0.9em;
    }
}
