@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:wght@400..800&display=swap');
:root {
    --primary-color: #7ae0d5;
    --primary-dark: #5eccc1;
    --primary-light: #b8e6ed;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --secondary-color: #6c757d;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --bg-gradient: linear-gradient(180deg, #7ae0d5 0%, #f2fafa 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --radius: 12px;
}

* {
    font-family: "Baloo Bhaijaan 2", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(180deg, #7ae0d5 0%, #f2fafa 100%) !important;
    background-attachment: fixed !important;
    background-size: 100% 100% !important;
    background-repeat: no-repeat !important;
    color: #212529;
    min-height: 100vh;
    overflow-x: hidden;
}

.sidebar {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 280px;
    background: linear-gradient(180deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 0;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.sidebar-header {
    background: rgba(0,0,0,0.1);
    text-align: center;
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.sidebar-menu {
    list-style: none;
    padding: 15px 10px;
}

.sidebar-menu li {
    margin-bottom: 3px;
    animation: slideInRight 0.4s ease backwards;
}

.sidebar-menu li:nth-child(1) { animation-delay: 0.05s; }
.sidebar-menu li:nth-child(2) { animation-delay: 0.1s; }
.sidebar-menu li:nth-child(3) { animation-delay: 0.15s; }
.sidebar-menu li:nth-child(4) { animation-delay: 0.2s; }
.sidebar-menu li:nth-child(5) { animation-delay: 0.25s; }
.sidebar-menu li:nth-child(6) { animation-delay: 0.3s; }
.sidebar-menu li:nth-child(7) { animation-delay: 0.35s; }
.sidebar-menu li:nth-child(8) { animation-delay: 0.4s; }
.sidebar-menu li:nth-child(9) { animation-delay: 0.45s; }
.sidebar-menu li:nth-child(10) { animation-delay: 0.5s; }
.sidebar-menu li:nth-child(11) { animation-delay: 0.55s; }
.sidebar-menu li:nth-child(12) { animation-delay: 0.6s; }
.sidebar-menu li:nth-child(13) { animation-delay: 0.65s; }
.sidebar-menu li:nth-child(14) { animation-delay: 0.7s; }
.sidebar-menu li:nth-child(15) { animation-delay: 0.75s; }
.sidebar-menu li:nth-child(16) { animation-delay: 0.8s; }
.sidebar-menu li:nth-child(17) { animation-delay: 0.85s; }
.sidebar-menu li:nth-child(18) { animation-delay: 0.9s; }
.sidebar-menu li:nth-child(19) { animation-delay: 0.95s; }
.sidebar-menu li:nth-child(20) { animation-delay: 1s; }
.sidebar-menu li:nth-child(21) { animation-delay: 1.05s; }
.sidebar-menu li:nth-child(22) { animation-delay: 1.1s; }
.sidebar-menu li:nth-child(23) { animation-delay: 1.15s; }
.sidebar-menu li:nth-child(24) { animation-delay: 1.2s; }
.sidebar-menu li:nth-child(25) { animation-delay: 1.25s; }

.sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
}

.sidebar-menu a:hover {
    background: rgba(255,255,255,0.15);
    color: white;
    transform: translateX(-5px);
    padding-right: 20px;
}

.sidebar-menu a.active {
    background: var(--primary-color);
    color: var(--dark-color);
    box-shadow: 0 2px 8px rgba(122, 224, 213, 0.4);
    font-weight: 700;
    transform: translateX(-5px);
    padding-right: 20px;
}

.sidebar-menu i {
    margin-left: 12px;
    font-size: 19px;
    width: 24px;
    text-align: center;
}

.main-content {
    margin-right: 280px;
    padding: 20px;
    min-height: 100vh;
}

.header {
    background: white;
    padding: 22px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 4px solid var(--primary-color);
    animation: slideInLeft 0.5s ease;
}

.header-left h2 {
    margin: 0;
    font-weight: 700;
    color: var(--dark-color);
    font-size: 24px;
}

.header-left h2 i {
    margin-left: 10px;
    color: var(--primary-color);
}

.header-left p {
    margin: 6px 0 0 0;
    color: #6c757d;
    font-size: 14px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: var(--light-color);
    border-radius: var(--radius);
    border: 1px solid #e0e0e0;
}

.user-info > div {
    text-align: right;
}

.user-info strong {
    display: block;
    color: var(--dark-color);
    font-size: 15px;
    font-weight: 700;
    width: 60px;
}

.user-info small {
    color: #6c757d;
    font-size: 13px;
}

.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-weight: 700;
    font-size: 18px;
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
}

.content-card {
    background: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.5s ease;
    transition: all 0.3s ease;
}

.content-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn {
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.btn i {
    font-size: 18px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--dark-color);
    border: 2px solid var(--primary-dark);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 224, 213, 0.4);
    color: var(--dark-color);
}

.btn-success {
    background: var(--success-color);
    color: white;
    border: 2px solid #1e7e34;
}

.btn-success:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    color: white;
}

.btn-danger {
    background: var(--danger-color);
    color: white;
    border: 2px solid #bd2130;
}

.btn-danger:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
    color: white;
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
    border: 2px solid #545b62;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
    color: white;
}

.btn-info {
    background: var(--info-color);
    color: white;
    border: 2px solid #117a8b;
}

.btn-info:hover {
    background: #138496;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23, 162, 184, 0.4);
    color: white;
}

.btn-warning {
    background: var(--warning-color);
    color: #212529;
    border: 2px solid #d39e00;
    font-weight: 700;
}

.btn-warning:hover {
    background: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    color: #212529;
}

.btn-logout {
    background: var(--danger-color);
    color: white;
    border: 2px solid #bd2130;
}

.btn-logout:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
    color: white;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-gradient-primary,
.btn-gradient-success,
.btn-gradient-secondary,
.btn-gradient-info,
.btn-gradient-warning,
.btn-gradient-danger {
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.btn-gradient-primary::before,
.btn-gradient-success::before,
.btn-gradient-secondary::before,
.btn-gradient-info::before,
.btn-gradient-warning::before,
.btn-gradient-danger::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.btn-gradient-primary:hover::before,
.btn-gradient-success:hover::before,
.btn-gradient-secondary:hover::before,
.btn-gradient-info:hover::before,
.btn-gradient-warning:hover::before,
.btn-gradient-danger:hover::before {
    left: 100%;
}

.btn-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--dark-color);
    border-color: var(--primary-dark);
}

.btn-gradient-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(122, 224, 213, 0.5);
    color: var(--dark-color);
}

.btn-gradient-success {
    background: linear-gradient(135deg, var(--success-color) 0%, #218838 100%);
    color: white;
    border-color: #1e7e34;
}

.btn-gradient-success:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.5);
    color: white;
}

.btn-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #5a6268 100%);
    color: white;
    border-color: #545b62;
}

.btn-gradient-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.5);
    color: white;
}

.btn-gradient-info {
    background: linear-gradient(135deg, var(--info-color) 0%, #138496 100%);
    color: white;
    border-color: #117a8b;
}

.btn-gradient-info:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.5);
    color: white;
}

.btn-gradient-warning {
    background: linear-gradient(135deg, var(--warning-color) 0%, #e0a800 100%);
    color: var(--dark-color);
    border-color: #d39e00;
}

.btn-gradient-warning:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
    color: var(--dark-color);
}

.btn-gradient-danger {
    background: linear-gradient(135deg, var(--danger-color) 0%, #c82333 100%);
    color: white;
    border-color: #bd2130;
}

.btn-gradient-danger:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.5);
    color: white;
}

.btn-gradient-primary i,
.btn-gradient-success i,
.btn-gradient-secondary i,
.btn-gradient-info i,
.btn-gradient-warning i,
.btn-gradient-danger i {
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.form-control,
.form-select {
    border-radius: var(--radius);
    border: 2px solid #d1d5db;
    padding: 13px 16px;
    font-size: 15px;
    width: 100%;
    transition: all 0.3s;
    background: white;
    font-weight: 500;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(122, 224, 213, 0.2);
    outline: none;
}

.form-label {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
    display: block;
    font-size: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.table thead {
    background: var(--primary-color);
    color: var(--dark-color);
}

.table thead th {
    padding: 16px;
    text-align: right;
    font-weight: 700;
    font-size: 15px;
}

.table tbody td {
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
}

.table tbody tr {
    transition: all 0.3s ease;
    animation: fadeIn 0.4s ease backwards;
}

.table tbody tr:nth-child(1) { animation-delay: 0.05s; }
.table tbody tr:nth-child(2) { animation-delay: 0.1s; }
.table tbody tr:nth-child(3) { animation-delay: 0.15s; }
.table tbody tr:nth-child(4) { animation-delay: 0.2s; }
.table tbody tr:nth-child(5) { animation-delay: 0.25s; }
.table tbody tr:nth-child(6) { animation-delay: 0.3s; }
.table tbody tr:nth-child(7) { animation-delay: 0.35s; }
.table tbody tr:nth-child(8) { animation-delay: 0.4s; }
.table tbody tr:nth-child(9) { animation-delay: 0.45s; }
.table tbody tr:nth-child(10) { animation-delay: 0.5s; }
.table tbody tr:nth-child(11) { animation-delay: 0.55s; }
.table tbody tr:nth-child(12) { animation-delay: 0.6s; }
.table tbody tr:nth-child(13) { animation-delay: 0.65s; }
.table tbody tr:nth-child(14) { animation-delay: 0.7s; }
.table tbody tr:nth-child(15) { animation-delay: 0.75s; }
.table tbody tr:nth-child(16) { animation-delay: 0.8s; }
.table tbody tr:nth-child(17) { animation-delay: 0.85s; }
.table tbody tr:nth-child(18) { animation-delay: 0.9s; }
.table tbody tr:nth-child(19) { animation-delay: 0.95s; }
.table tbody tr:nth-child(20) { animation-delay: 1s; }
.table tbody tr:nth-child(21) { animation-delay: 1.05s; }
.table tbody tr:nth-child(22) { animation-delay: 1.1s; }
.table tbody tr:nth-child(23) { animation-delay: 1.15s; }
.table tbody tr:nth-child(24) { animation-delay: 1.2s; }
.table tbody tr:nth-child(25) { animation-delay: 1.25s; }
.table tbody tr:nth-child(26) { animation-delay: 1.3s; }
.table tbody tr:nth-child(27) { animation-delay: 1.35s; }
.table tbody tr:nth-child(28) { animation-delay: 1.4s; }
.table tbody tr:nth-child(29) { animation-delay: 1.45s; }
.table tbody tr:nth-child(30) { animation-delay: 1.5s; }
.table tbody tr:nth-child(n+31) { animation-delay: 1.5s; }

.table tbody tr:hover {
    background: rgba(122, 224, 213, 0.12);
    transform: translateX(-3px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.table tbody tr:last-child td {
    border-bottom: none;
}

.card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 20px;
    border: none;
    animation: scaleIn 0.4s ease;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.card-header {
    background: var(--light-color);
    padding: 16px 20px;
    border-bottom: 2px solid #e0e0e0;
    font-weight: 700;
    color: var(--dark-color);
    font-size: 16px;
}

.card-body {
    padding: 20px;
}

.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid;
    animation: slideInRight 0.5s ease;
}

.alert i {
    font-size: 20px;
}

.alert-success {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.alert-success i {
    animation: bounce 1s ease;
}

.alert-danger {
    background: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.alert-warning {
    background: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}

.alert-info {
    background: #d1ecf1;
    border-color: #17a2b8;
    color: #0c5460;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.badge-success {
    background: var(--success-color);
    color: white;
}

.badge-danger {
    background: var(--danger-color);
    color: white;
}

.badge-warning {
    background: var(--warning-color);
    color: #212529;
}

.badge-info {
    background: var(--info-color);
    color: white;
}

.badge-secondary {
    background: var(--secondary-color);
    color: white;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .3s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background: #57aaa2;
}

input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.menu-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background: var(--primary-color);
    border: 3px solid var(--primary-dark);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: var(--dark-color);
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    display: none;
    cursor: pointer;
    font-weight: 700;
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(100%);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        margin-right: 0;
        padding: 15px;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .user-info {
        width: 100%;
        justify-content: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .table {
        font-size: 13px;
    }

    .table thead th,
    .table tbody td {
        padding: 12px 8px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 10px;
    }

    .content-card {
        padding: 20px 15px;
    }

    .header {
        padding: 16px;
    }

    .btn {
        font-size: 14px;
        padding: 12px 20px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes successPop {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-10deg);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spinner {
    border: 3px solid rgba(122, 224, 213, 0.3);
    border-radius: 50%;
    border-top: 3px solid var(--primary-color);
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
    margin: 20px auto;
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease;
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease;
}

.animate-slideInRight {
    animation: slideInRight 0.5s ease;
}

.animate-slideInLeft {
    animation: slideInLeft 0.5s ease;
}

.animate-scaleIn {
    animation: scaleIn 0.4s ease;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-bounce {
    animation: bounce 1s ease;
}

.animate-successPop {
    animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.d-flex { display: flex; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.gap-2 { gap: 1rem; }
.w-100 { width: 100%; }

.form-check-input:checked {
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.pagination-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8fdfc 0%, #ffffff 100%);
    border: 2px solid #7ae0d5;
    border-radius: 15px;
    flex-wrap: wrap;
}

.pagination-info {
    color: #2c3e50;
    font-size: 14px;
    font-weight: 500;
}

.pagination-info strong {
    color: #7ae0d5;
    font-weight: 700;
}

.pagination-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pagination .page-item {
    list-style: none;
}

.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 8px 12px;
    border: 2px solid #e0e0e0;
    background: white;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pagination .page-link:hover {
    border-color: #7ae0d5;
    background: linear-gradient(135deg, #7ae0d5 0%, #5eccc1 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(122, 224, 213, 0.3);
}

.pagination .page-item.active .page-link {
    border-color: #7ae0d5;
    background: linear-gradient(135deg, #7ae0d5 0%, #5eccc1 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(122, 224, 213, 0.4);
    cursor: default;
}

.pagination .page-item.disabled .page-link {
    border-color: #f0f0f0;
    background: #f5f5f5;
    color: #bbb;
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination .page-item.disabled .page-link:hover {
    transform: none;
    box-shadow: none;
}

.pagination-select {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #2c3e50;
}

.pagination-select .form-select {
    width: 80px;
    height: 40px;
    border: 2px solid #7ae0d5;
    border-radius: 10px;
    padding: 8px 12px;
    font-weight: 600;
    color: #2c3e50;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-select .form-select:hover {
    border-color: #5eccc1;
    box-shadow: 0 4px 12px rgba(122, 224, 213, 0.2);
}

.pagination-select .form-select:focus {
    outline: none;
    border-color: #7ae0d5;
    box-shadow: 0 0 0 3px rgba(122, 224, 213, 0.2);
}

.pagination-select span {
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .pagination-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .pagination-info {
        width: 100%;
        text-align: center;
        font-size: 13px;
    }

    .pagination-nav {
        width: 100%;
        overflow-x: auto;
    }

    .pagination {
        gap: 3px;
    }

    .pagination .page-link {
        min-width: 35px;
        height: 35px;
        padding: 6px 10px;
        font-size: 13px;
        border-radius: 8px;
    }

    .pagination-select {
        width: 100%;
        justify-content: center;
    }

    .pagination-select .form-select {
        width: 70px;
        height: 35px;
        font-size: 13px;
    }
}

@media (prefers-color-scheme: dark) {
    .pagination-container {
        background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
        border-color: #7ae0d5;
    }

    .pagination-info,
    .pagination-select span {
        color: #ecf0f1;
    }

    .pagination .page-link {
        background: #34495e;
        color: #ecf0f1;
        border-color: #4a5f7f;
    }

    .pagination .page-link:hover {
        background: linear-gradient(135deg, #7ae0d5 0%, #5eccc1 100%);
        color: white;
    }

    .pagination-select .form-select {
        background: #34495e;
        color: #ecf0f1;
        border-color: #7ae0d5;
    }
}
/* Button Stars */
.btn-about {
    margin-top: 10px;
    position: relative;
    padding: 12px 35px;
    background: #7ae0d5;
    font-size: 15px;
    color: #ffffff;
    border: 3px solid #7ae0d5;
    border-radius: 8px;
    box-shadow: 0 0 0 #ffffff;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.star-1 {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 25px;
    height: auto;
    filter: drop-shadow(0 0 0 #7ae0d5);
    z-index: -5;
    transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.star-2 {
    position: absolute;
    top: 45%;
    left: 45%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0 #7ae0d5);
    z-index: -5;
    transition: all 1scubic-bezier(0, 0.4, 0, 1.01);
}

.star-3 {
    position: absolute;
    top: 40%;
    left: 40%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0 #7ae0d5);
    z-index: -5;
    transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-4 {
    position: absolute;
    top: 20%;
    left: 40%;
    width: 8px;
    height: auto;
    filter: drop-shadow(0 0 0 #7ae0d5);
    z-index: -5;
    transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-5 {
    position: absolute;
    top: 25%;
    left: 45%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0 #7ae0d5);
    z-index: -5;
    transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-6 {
    position: absolute;
    top: 5%;
    left: 50%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0 #7ae0d5);
    z-index: -5;
    transition: all 0.8s ease;
}

.btn-about:hover {
    background: transparent;
    color: #7ae0d5;
    box-shadow: 0 0 0px #7ae0d5;
}

.btn-about:hover .star-1 {
    position: absolute;
    top: -80%;
    left: -30%;
    width: 25px;
    height: auto;
    filter: drop-shadow(0 0 0px #7ae0d5);
    z-index: 2;
}

.btn-about:hover .star-2 {
    position: absolute;
    top: -0%;
    left: 10%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0px #7ae0d5);
    z-index: 2;
}

.btn-about:hover .star-3 {
    position: absolute;
    top: 55%;
    left: 25%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0px #7ae0d5);
    z-index: 2;
}

.btn-about:hover .star-4 {
    position: absolute;
    top: 30%;
    left: 80%;
    width: 8px;
    height: auto;
    filter: drop-shadow(0 0 0px #7ae0d5);
    z-index: 2;
}

.btn-about:hover .star-5 {
    position: absolute;
    top: 25%;
    left: 115%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0px #7ae0d5);
    z-index: 2;
}

.btn-about:hover .star-6 {
    position: absolute;
    top: 5%;
    left: 60%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0px #7ae0d5);
    z-index: 2;
}

.fil0 {
    fill: #7ae0d5;
}
