@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
}

/* Premium Card Hover Effects */
.stat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.1) !important;
}

/* Smooth Pagination */
.pagination .page-link {
    border: none;
    padding: 0.5rem 1rem;
    color: #475569;
    transition: all 0.2s;
}
.pagination .page-item.active .page-link {
    background-color: #3b82f6;
    color: white;
    border-radius: 0.5rem !important;
}
.pagination .page-link:hover {
    background-color: #e2e8f0;
    border-radius: 0.5rem !important;
    z-index: 0;
}

/* Custom Button Styles */
.btn {
    font-weight: 500;
    transition: all 0.2s ease;
}
.btn-primary {
    background-color: #2563eb;
    border-color: #2563eb;
}
.btn-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    transform: scale(1.02);
}

/* Table Row Animation */
.table tbody tr {
    transition: background-color 0.2s;
}
.table tbody tr:hover {
    background-color: #f1f5f9;
}