/* Security Guard Reporting System - Custom Styles */

.hover-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15) !important;
}

.card {
    border-radius: 8px;
}

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

.table th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.badge {
    font-weight: 500;
    padding: 0.5em 0.8em;
}

.alert {
    border-radius: 8px;
    border: none;
}

.btn {
    border-radius: 6px;
    font-weight: 500;
}

.form-control, .form-select {
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.form-control:focus, .form-select:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Dashboard stats cards */
.card .fs-1 {
    opacity: 0.8;
}

/* Image preview in tables */
.img-thumbnail {
    max-width: 60px;
    max-height: 60px;
}

/* Pagination styling */
.pagination .page-link {
    border-radius: 4px;
    margin: 0 2px;
}

/* Print styles */
@media print {
    .navbar, .btn, form, .pagination {
        display: none !important;
    }
    
    .card {
        box-shadow: none !important;
        border: 1px solid #ddd;
    }
}
