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

:root {
    /* Color Palette - Navy, Blue Royal, Gold, and Slate */
    --primary-h: 220;
    --primary-s: 70%;
    --primary-l: 16%; /* Deep Navy */
    
    --primary: hsl(var(--primary-h), var(--primary-s), var(--primary-l));
    --primary-light: hsl(var(--primary-h), var(--primary-s), calc(var(--primary-l) + 10%));
    --primary-dark: hsl(var(--primary-h), var(--primary-s), calc(var(--primary-l) - 5%));
    
    --accent-h: 38;
    --accent-s: 92%;
    --accent-l: 50%; /* Gold Accent */
    --accent: hsl(var(--accent-h), var(--accent-s), var(--accent-l));
    --accent-hover: hsl(var(--accent-h), var(--accent-s), calc(var(--accent-l) - 5%));

    --blue-royal: #3b82f6;
    --blue-royal-dark: #1d4ed8;

    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    
    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-white: #ffffff;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
}

/* Base resets & styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 600;
}

a {
    color: var(--blue-royal);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--blue-royal-dark);
}

/* Layout Dashboard */
.app-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Navigasi */
.sidebar {
    width: 280px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 100;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition-normal);
}

.sidebar-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sidebar-logo {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
    box-shadow: 0 0 15px rgba(217, 119, 6, 0.2);
}

.sidebar-logo svg {
    width: 32px;
    height: 32px;
    fill: var(--accent);
}

.sidebar-title {
    font-size: 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-white);
    line-height: 1.2;
}

.sidebar-subtitle {
    font-size: 11px;
    color: var(--accent);
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-menu {
    flex: 1;
    overflow-y: auto;
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-label {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 12px 12px 6px;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 11px 16px;
    color: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: var(--transition-fast);
    gap: 12px;
}

.menu-item:hover {
    color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.05);
}

.menu-item.active {
    color: var(--text-white);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-left: 4px solid var(--accent);
    font-weight: 600;
}

.menu-item svg {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

.menu-item.active svg {
    color: var(--accent);
    opacity: 1;
}

.sidebar-user {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(0, 0, 0, 0.1);
}

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

.user-info {
    flex: 1;
    overflow: hidden;
}

.user-name {
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.user-role {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* Konten Utama */
.main-content {
    margin-left: 280px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* Top Navbar */
.navbar {
    height: 70px;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    position: sticky;
    top: 0;
    z-index: 90;
    box-shadow: var(--shadow-sm);
}

.navbar-page-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.academic-year-badge {
    background-color: hsl(var(--primary-h), var(--primary-s), 95%);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 12px;
    border: 1px solid hsl(var(--primary-h), var(--primary-s), 90%);
}

.btn-logout {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ef4444;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.btn-logout:hover {
    background-color: #fef2f2;
}

/* Dashboard Body Container */
.content-body {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Dashboard Summary Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.stat-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--blue-royal);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-card.accent::before {
    background-color: var(--accent);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-top: 4px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background-color: #eff6ff;
    color: var(--blue-royal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card.accent .stat-icon {
    background-color: #fffbeb;
    color: var(--accent);
}

.stat-icon svg {
    width: 24px;
    height: 24px;
}

/* Card General */
.card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fafafa;
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

.card-actions {
    display: flex;
    gap: 10px;
}

.card-body {
    padding: 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition-fast);
    gap: 8px;
    border: 1px solid transparent;
}

.btn svg {
    width: 16px;
    height: 16px;
}

.btn-primary {
    background-color: var(--blue-royal);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--blue-royal-dark);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
}

.btn-secondary {
    background-color: #f1f5f9;
    color: #475569;
    border-color: #e2e8f0;
}

.btn-secondary:hover {
    background-color: #e2e8f0;
}

.btn-danger {
    background-color: #ef4444;
    color: var(--text-white);
}

.btn-danger:hover {
    background-color: #dc2626;
}

.btn-success {
    background-color: #10b981;
    color: var(--text-white);
}

.btn-success:hover {
    background-color: #059669;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 11px;
    border-radius: var(--radius-sm);
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    width: 100%;
}

.table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.table th {
    background-color: #f8fafc;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
}

.table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    color: #334155;
    vertical-align: middle;
}

.table tbody tr {
    transition: var(--transition-fast);
}

.table tbody tr:hover {
    background-color: #f8fafc;
}

/* Modals & Dialogs (Glassmorphism backdrop) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

.modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    background-color: var(--bg-card);
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transform: scale(0.95);
    transition: var(--transition-normal);
}

.modal-overlay.show .modal {
    transform: scale(1);
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fafafa;
}

.modal-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

.modal-close {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    background: none;
    border: none;
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    background-color: #fafafa;
}

/* Forms styling */
.form-group {
    margin-bottom: 16px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 13px;
    color: #334155;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    border: 1px solid #cbd5e1;
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-fast);
    background-color: #ffffff;
}

.form-control:focus {
    outline: none;
    border-color: var(--blue-royal);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Login Page Styling */
.login-container {
    min-height: 100vh;
    display: flex;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

/* Abstract patterns for high-end look */
.login-decor-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
}

.login-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    color: var(--text-white);
    position: relative;
    z-index: 10;
}

@media (max-width: 900px) {
    .login-left {
        display: none;
    }
}

.login-hero-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.login-hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    line-height: 1.6;
}

.login-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    z-index: 10;
}

.login-card {
    width: 100%;
    max-width: 420px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.3), 0 8px 10px -6px rgb(0 0 0 / 0.3);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--accent);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.login-logo svg {
    width: 40px;
    height: 40px;
    fill: var(--accent);
}

.login-card-title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.login-card-subtitle {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

/* Criteria Grid (9 Kriteria) */
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.criteria-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 180px;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    cursor: pointer;
}

.criteria-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-royal);
}

.criteria-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background-color: var(--blue-royal);
}

.criteria-card.accent::before {
    background-color: var(--accent);
}

.criteria-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.criteria-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 4px;
    line-height: 1.4;
    flex: 1;
}

.criteria-stats {
    display: flex;
    justify-content: space-between;
    background-color: #f8fafc;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.criteria-stats span strong {
    color: var(--primary);
}

/* PPEPP Grid */
.ppepp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.ppepp-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.ppepp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-royal);
}

.ppepp-letter {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #eff6ff;
    color: var(--blue-royal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    font-weight: 800;
}

.ppepp-card.accent .ppepp-letter {
    background-color: #fffbeb;
    color: var(--accent);
}

.ppepp-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.ppepp-desc {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* File explorer list styling */
.file-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    transition: var(--transition-fast);
}

.file-item:hover {
    border-color: #cbd5e1;
    background-color: #f8fafc;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.file-icon {
    color: #ef4444; /* red for pdf by default */
    display: flex;
    align-items: center;
}

.file-icon svg {
    width: 28px;
    height: 28px;
}

.file-details {
    display: flex;
    flex-direction: column;
}

.file-name {
    font-weight: 600;
    color: var(--primary);
    font-size: 13.5px;
}

.file-meta {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

.file-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Share Page */
.share-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
    padding: 24px;
}

.share-card {
    width: 100%;
    max-width: 500px;
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.share-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--accent);
}

.share-logo svg {
    width: 40px;
    height: 40px;
    fill: var(--accent);
}

.share-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.share-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.share-file-box {
    background-color: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.share-file-icon {
    color: #ef4444;
}

.share-file-icon svg {
    width: 36px;
    height: 36px;
}

.share-file-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 14px;
    word-break: break-all;
}

.share-file-size {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Alert system */
.alert {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid transparent;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border-color: #a7f3d0;
}

.alert-danger {
    background-color: #fee2e2;
    color: #991b1b;
    border-color: #fca5a5;
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

.badge-info {
    background-color: #e0f2fe;
    color: #0369a1;
}

.badge-success {
    background-color: #d1fae5;
    color: #065f46;
}

.badge-warning {
    background-color: #fef3c7;
    color: #92400e;
}

/* Pagination Styling */
.custom-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 15px;
    font-family: var(--font-body);
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition-fast);
    cursor: pointer;
}

.pagination-btn:hover:not(.disabled) {
    background-color: var(--bg-main);
    border-color: var(--text-muted);
}

.pagination-btn.disabled {
    color: var(--text-muted);
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f1f5f9;
}

.pagination-pages {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pagination-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition-fast);
    cursor: pointer;
}

.pagination-page:hover:not(.active) {
    background-color: var(--bg-main);
    color: var(--primary);
}

.pagination-page.active {
    background-color: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
    cursor: default;
}

.pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    color: var(--text-muted);
    font-size: 14px;
}
