/* ============================================
   Custom Styles - Administrasi Kelulusan
   SMKN 1 Cipeundeuy
   Theme: Deep Ocean Emerald
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* ── Core Palette ── */
    --primary: #0d9488;
    --primary-dark: #0f766e;
    --primary-light: #f0fdfa;
    --primary-glow: rgba(13, 148, 136, 0.25);

    /* ── Accent Colors ── */
    --accent-amber: #f59e0b;
    --accent-rose: #f43f5e;
    --accent-violet: #8b5cf6;
    --accent-sky: #06b6d4;

    /* ── Neutral ── */
    --secondary: #64748b;
    --dark: #0f172a;
    --muted: #94a3b8;
    --border: #e2e8f0;

    /* ── Semantic ── */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #06b6d4;

    /* ── Layout ── */
    --sidebar-bg: linear-gradient(180deg, #0c1222 0%, #111b2e 50%, #0e1726 100%);
    --sidebar-hover: rgba(255, 255, 255, 0.06);
    --sidebar-active: #14b8a6;
    --topbar-bg: linear-gradient(135deg, #0c1222 0%, #0f2030 40%, #0d3330 100%);
    --body-bg: #f8fafb;

    /* ── Effects ── */
    --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --card-hover-shadow: 0 10px 30px rgba(13, 148, 136, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --border-radius: 14px;
    --border-radius-sm: 10px;
}

* {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
}

body {
    background: var(--body-bg);
    overflow-x: hidden;
    color: var(--dark);
}

/* ============ TOPBAR ============ */
.topbar {
    background: var(--topbar-bg);
    height: 64px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    display: flex;
    align-items: center;
    padding: 0 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(20, 184, 166, 0.15);
}

/* Animated shimmer line under topbar */
.topbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--sidebar-active), var(--accent-amber), var(--sidebar-active), transparent);
    background-size: 300% 100%;
    animation: topbarShimmer 6s ease infinite;
}

@keyframes topbarShimmer {

    0%,
    100% {
        background-position: 100% 0;
    }

    50% {
        background-position: 0% 0;
    }
}

.topbar .logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar .logo-wrapper img {
    height: 38px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(20, 184, 166, 0.3));
    transition: var(--transition);
}

.topbar .logo-wrapper img:hover {
    filter: drop-shadow(0 4px 12px rgba(20, 184, 166, 0.5));
    transform: scale(1.05);
}

.topbar .app-title {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: nowrap;
    background: linear-gradient(135deg, #ffffff 0%, #99f6e4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.topbar .app-subtitle {
    color: rgba(153, 246, 228, 0.6);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.topbar .user-info {
    color: #ffffff;
    font-size: 0.85rem;
}

.topbar .user-info .user-name {
    font-weight: 600;
    color: #f0fdfa;
}

.topbar .user-info .user-role {
    color: rgba(153, 246, 228, 0.6);
    font-size: 0.72rem;
    font-weight: 500;
}

.btn-toggle-sidebar {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #99f6e4;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 7px 11px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.btn-toggle-sidebar:hover {
    background: rgba(20, 184, 166, 0.2);
    border-color: rgba(20, 184, 166, 0.4);
    color: #ffffff;
    transform: scale(1.05);
}

/* ============ SIDEBAR ============ */
.sidebar {
    position: fixed;
    top: 64px;
    left: 0;
    width: 260px;
    height: calc(100vh - 64px);
    background: var(--sidebar-bg);
    overflow-y: auto;
    z-index: 1030;
    transition: var(--transition);
    border-right: 1px solid rgba(20, 184, 166, 0.08);
}

.sidebar.collapsed {
    width: 0;
    overflow: hidden;
}

.sidebar::-webkit-scrollbar {
    width: 3px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(20, 184, 166, 0.2);
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(20, 184, 166, 0.4);
}

.sidebar .nav-section {
    padding: 20px 20px 8px;
    color: rgba(148, 163, 184, 0.6);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sidebar .nav-link {
    color: rgba(226, 232, 240, 0.65);
    padding: 11px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
    text-decoration: none;
    margin: 1px 8px;
    border-radius: 0 8px 8px 0;
    position: relative;
    overflow: hidden;
}

.sidebar .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(20, 184, 166, 0.12), transparent);
    transition: width 0.4s ease;
}

.sidebar .nav-link:hover::before {
    width: 100%;
}

.sidebar .nav-link:hover {
    color: #f0fdfa;
    border-left-color: rgba(20, 184, 166, 0.4);
}

.sidebar .nav-link.active {
    color: #ffffff;
    background: rgba(20, 184, 166, 0.1);
    border-left-color: var(--sidebar-active);
    font-weight: 600;
    box-shadow: inset 0 0 20px rgba(20, 184, 166, 0.05);
}

.sidebar .nav-link.active::before {
    width: 100%;
    background: linear-gradient(90deg, rgba(20, 184, 166, 0.15), transparent);
}

.sidebar .nav-link i {
    font-size: 1.05rem;
    width: 22px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.sidebar .nav-link span,
.sidebar .nav-link {
    position: relative;
    z-index: 1;
}

.sidebar .sidebar-footer {
    padding: 16px 20px;
    border-top: 1px solid rgba(20, 184, 166, 0.1);
    margin-top: auto;
    background: rgba(0, 0, 0, 0.15);
}

.sidebar .sidebar-footer .rounded-circle {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-sky) 100%) !important;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.35);
}

/* Sidebar mobile overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 18, 34, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1025;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.show {
    display: block;
    opacity: 1;
}

/* ============ MAIN CONTENT ============ */
.main-content {
    margin-left: 260px;
    margin-top: 64px;
    padding: 28px;
    min-height: calc(100vh - 64px);
    transition: var(--transition);
}

.main-content.expanded {
    margin-left: 0;
}

/* ============ PAGE HEADER ============ */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.page-header h4 {
    font-weight: 800;
    color: var(--dark);
    margin: 0;
    font-size: 1.35rem;
    letter-spacing: -0.3px;
}

.page-header h4 i {
    color: var(--primary);
}

.page-header .breadcrumb {
    font-size: 0.78rem;
    margin: 0;
    color: var(--secondary);
}

.page-header .badge {
    background: rgba(13, 148, 136, 0.1) !important;
    color: var(--primary-dark) !important;
    font-weight: 600;
    border: none;
    box-shadow: none;
    border-radius: 20px;
    padding: 6px 12px;
}

/* ============ CARDS ============ */
.card {
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    overflow: hidden;
    background: #ffffff;
}

.card:hover {
    box-shadow: var(--card-hover-shadow);
    border-color: rgba(13, 148, 136, 0.15);
}

.card-header {
    background: linear-gradient(135deg, #fafffe 0%, #f0fdfa 100%);
    border-bottom: 1px solid var(--border);
    font-weight: 700;
    padding: 16px 20px;
    font-size: 0.9rem;
    color: var(--dark);
}

.card-header i {
    color: var(--primary);
}

.card-body {
    padding: 20px;
}

/* Stats Cards */
.stats-card {
    border-radius: var(--border-radius);
    padding: 22px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
}

.stats-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Geometric overlay pattern */
.stats-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 120px;
    height: 120px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transform: rotate(35deg);
}

.stats-card::after {
    content: '';
    position: absolute;
    bottom: -15%;
    right: 15%;
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.stats-card .stats-icon {
    font-size: 2rem;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}

.stats-card .stats-number {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.stats-card .stats-label {
    opacity: 0.85;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

/* Unique gradient combinations */
.bg-gradient-primary {
    background: linear-gradient(135deg, #0d9488 0%, #06b6d4 100%);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #059669 0%, #34d399 100%);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #d946ef 0%, #8b5cf6 100%);
}

.bg-gradient-info {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, #ef4444 0%, #f43f5e 100%);
}

.bg-gradient-teal {
    background: linear-gradient(135deg, #14b8a6 0%, #2dd4bf 50%, #5eead4 100%);
}

/* ============ BUTTONS ============ */
.btn {
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.84rem;
    padding: 8px 18px;
    transition: var(--transition);
    letter-spacing: 0.2px;
    position: relative;
    overflow: hidden;
}

/* Shimmer effect on hover */
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn:hover::after {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    box-shadow: 0 2px 6px var(--primary-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #115e59);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px var(--primary-glow);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.78rem;
    border-radius: 8px;
}

.btn-icon {
    width: 34px;
    height: 34px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/* ============ TABLES (ELEGANT MINIMALIST) ============ */
.table {
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 0;
}

.table thead th {
    background: #f8fafb;
    font-weight: 600;
    color: var(--secondary);
    border-bottom: 2px solid #e2e8f0;
    white-space: nowrap;
    padding: 14px 18px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-top: none;
}

.table tbody td {
    padding: 14px 18px;
    vertical-align: middle;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
}

/* Remove side borders for a cleaner look */
.table-bordered {
    border: none;
}

.table-bordered th,
.table-bordered td {
    border-left: none;
    border-right: none;
}

.table-hover tbody tr {
    transition: all 0.2s ease;
}

.table-hover tbody tr:hover {
    background: rgba(13, 148, 136, 0.03);
}

/* DataTables overrides - Premium UI */
.dataTables_wrapper {
    padding: 0;
}

/* Container padding for controls to allow edge-to-edge tables */
.dataTables_wrapper>.row:first-child {
    padding: 20px 24px 0 24px;
}

.dataTables_wrapper>div.dataTables_info,
.dataTables_wrapper>div.dataTables_paginate {
    padding-left: 24px;
    padding-right: 24px;
}

.dataTables_wrapper>div.dataTables_paginate {
    padding-bottom: 20px;
}

/* Length Options (Tampilkan X data) */
.dataTables_wrapper .dataTables_length {
    margin-bottom: 0;
    color: var(--secondary);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.dataTables_wrapper .dataTables_length select {
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    padding: 6px 36px 6px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
    margin: 0 10px;
    background-color: #ffffff;
    box-shadow: none;
    transition: all 0.2s ease;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.dataTables_wrapper .dataTables_length select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.1);
}

/* Filter/Search Bar (Cari:) */
.dataTables_wrapper .dataTables_filter {
    margin-bottom: 0;
    color: var(--secondary);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.dataTables_wrapper .dataTables_filter label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dataTables_wrapper .dataTables_filter input {
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    font-size: 0.85rem;
    width: 250px;
    background-color: #ffffff;
    box-shadow: none;
    transition: all 0.2s ease;
}

.dataTables_wrapper .dataTables_filter input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.1);
    outline: none;
    width: 280px;
}

/* Info Text (Menampilkan X sampai Y dari Z entri) */
div.dataTables_wrapper div.dataTables_info {
    font-size: 0.8rem;
    color: var(--secondary);
    padding-top: 16px;
    font-weight: 500;
}

/* Pagination Options (Bootstrap 5 Overrides) */
div.dataTables_wrapper div.dataTables_paginate {
    padding-top: 10px;
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    margin: 0;
    justify-content: flex-end;
    gap: 6px;
}

.dataTables_wrapper .pagination .page-item .page-link {
    border-radius: 6px !important;
    border: 1px solid #e2e8f0 !important;
    padding: 6px 14px !important;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary) !important;
    background: #ffffff !important;
    margin: 0 !important;
    transition: all 0.2s ease;
}

.dataTables_wrapper .pagination .page-item:not(.active):not(.disabled) .page-link:hover {
    background: #f0fdfa !important;
    color: var(--primary-dark) !important;
    border-color: var(--primary) !important;
}

.dataTables_wrapper .pagination .page-item.active .page-link {
    background: var(--primary) !important;
    color: #ffffff !important;
    border-color: var(--primary) !important;
    box-shadow: 0 2px 4px rgba(13, 148, 136, 0.2);
    font-weight: 600;
}

.dataTables_wrapper .pagination .page-item.disabled .page-link {
    opacity: 1 !important;
    cursor: default !important;
    background: #f8fafc !important;
    border-color: #f1f5f9 !important;
    color: #94a3b8 !important;
    box-shadow: none;
    transform: none;
}

/* Pagination Ellipsis (usually a disabled page-item or span inside) */
.dataTables_wrapper .pagination .page-item.disabled .page-link.ellipsis,
.dataTables_wrapper .pagination .page-link.ellipsis {
    padding: 6px 12px !important;
    color: #94a3b8 !important;
    background: #f8fafc !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 6px !important;
    font-size: 0.85rem;
}

/* DataTables Responsive Child Row Alignment */
table.dataTable>tbody>tr.child ul.dtr-details {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

table.dataTable>tbody>tr.child ul.dtr-details>li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px dotted #e2e8f0;
    padding: 10px 0;
}

table.dataTable>tbody>tr.child ul.dtr-details>li:last-child {
    border-bottom: none;
}

table.dataTable>tbody>tr.child span.dtr-title {
    font-weight: 700;
    min-width: 130px;
    margin-right: 12px;
    color: var(--dark);
    font-size: 0.8rem;
    display: inline-block;
}

table.dataTable>tbody>tr.child span.dtr-data {
    font-size: 0.8rem;
    color: #334155;
    word-break: break-word;
    text-align: right;
    flex: 1;
}

/* For extremely small screens under 350px, stack them */
@media (max-width: 350px) {
    table.dataTable>tbody>tr.child ul.dtr-details>li {
        flex-direction: column;
        align-items: flex-start;
    }

    table.dataTable>tbody>tr.child span.dtr-data {
        text-align: left;
        margin-top: 4px;
        width: 100%;
    }
}

/* ============ ACTION BUTTONS (MINIMALIST PREMIUM UI) ============ */
.btn {
    border-radius: 8px;
    /* Slightly rounded by default */
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: none !important;
    /* Minimalist: Remove permanent shadows */
    border: none !important;
}

.btn:active {
    transform: scale(0.96);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    /* Soft shadow only on hover */
}

/* Edit / Warning Button (Minimalist: Soft Yellow/Orange) */
.btn-warning {
    background: rgba(245, 158, 11, 0.15) !important;
    color: #d97706 !important;
}

.btn-warning:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
    color: #fff !important;
}

/* Delete / Danger Button (Minimalist: Soft Red) */
.btn-danger {
    background: rgba(239, 68, 68, 0.15) !important;
    color: #dc2626 !important;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%) !important;
    color: #fff !important;
}

/* Info / Detail Button (Minimalist: Soft Blue) */
.btn-info {
    background: rgba(14, 165, 233, 0.15) !important;
    color: #0284c7 !important;
}

.btn-info:hover {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%) !important;
    color: #fff !important;
}

/* Primary Button Override (Minimalist: Soft Teal) */
.btn-primary {
    background: rgba(13, 148, 136, 0.15) !important;
    color: var(--primary-dark) !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    color: #fff !important;
}

/* Base button sizes */
.btn-sm {
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 6px;
}

/* Adjust table action column width if buttons get larger */
.table td .btn {
    margin: 0 2px;
}

/* ============ FORMS ============ */
.form-control,
.form-select {
    border-radius: var(--border-radius-sm);
    border: 1.5px solid var(--border);
    font-size: 0.875rem;
    padding: 10px 14px;
    transition: var(--transition);
    background-color: #ffffff;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-label {
    font-weight: 600;
    font-size: 0.84rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.input-group-text {
    border-color: var(--border);
    background: #f8fafb;
    color: var(--secondary);
    border-radius: var(--border-radius-sm);
}

/* ============ MODAL ============ */
.modal-content {
    border: none;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
    border-bottom: 1px solid var(--border);
    padding: 18px 24px;
}

.modal-header .modal-title {
    font-weight: 700;
    color: var(--dark);
    font-size: 1rem;
}

.modal-header .modal-title i {
    color: var(--primary);
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    border-top: 1px solid var(--border);
    padding: 16px 24px;
    background: #fafffe;
}

/* ============ BADGES (MODERN MINIMALIST) ============ */
.badge {
    font-weight: 600;
    font-size: 0.73rem;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    border: none;
    box-shadow: none;
}

.badge.bg-primary,
.badge-primary {
    background: rgba(13, 148, 136, 0.1) !important;
    color: var(--primary-dark) !important;
}

.badge.bg-secondary,
.badge-secondary {
    background: rgba(100, 116, 139, 0.1) !important;
    color: #334155 !important;
}

.badge.bg-success,
.badge-success {
    background: rgba(16, 185, 129, 0.1) !important;
    color: #047857 !important;
}

.badge.bg-danger,
.badge-danger {
    background: rgba(239, 68, 68, 0.1) !important;
    color: #b91c1c !important;
}

.badge.bg-warning,
.badge-warning {
    background: rgba(245, 158, 11, 0.1) !important;
    color: #b45309 !important;
}

.badge.bg-info,
.badge-info {
    background: rgba(6, 182, 212, 0.1) !important;
    color: #0e7490 !important;
}

/* ============ LOGIN PAGE ============ */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0c1222 0%, #0f2030 25%, #0d3330 50%, #0c1828 75%, #0c1222 100%);
    background-size: 400% 400%;
    animation: loginBgShift 15s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes loginBgShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    25% {
        background-position: 50% 0%;
    }

    50% {
        background-position: 100% 50%;
    }

    75% {
        background-position: 50% 100%;
    }
}

/* Floating shapes */
.login-wrapper::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.15), transparent 70%);
    top: -80px;
    right: -80px;
    border-radius: 50%;
    animation: floatShape1 8s ease-in-out infinite;
}

.login-wrapper::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1), transparent 70%);
    bottom: -60px;
    left: -60px;
    border-radius: 50%;
    animation: floatShape2 10s ease-in-out infinite;
}

@keyframes floatShape1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, 30px) scale(1.1);
    }
}

@keyframes floatShape2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -25px) scale(1.15);
    }
}

.login-card {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    background: rgba(255, 255, 255, 0.92);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    padding: 44px 40px;
    position: relative;
    z-index: 1;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-amber), var(--accent-sky), var(--primary));
    border-radius: inherit;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.login-card .login-logo {
    text-align: center;
    margin-bottom: 24px;
}

.login-card .login-logo img {
    height: 68px;
    margin-bottom: 16px;
    filter: drop-shadow(0 6px 12px rgba(13, 148, 136, 0.2));
    transition: var(--transition);
}

.login-card .login-logo img:hover {
    transform: scale(1.08) rotate(-2deg);
}

.login-card .login-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    text-align: center;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.login-card .login-subtitle {
    font-size: 0.82rem;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 32px;
    font-weight: 500;
}

.login-card .btn-login {
    width: 100%;
    padding: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    background: linear-gradient(135deg, var(--primary) 0%, #0f766e 100%);
    border: none;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: 0 4px 14px var(--primary-glow);
    letter-spacing: 0.3px;
}

.login-card .btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(13, 148, 136, 0.4);
}

/* ============ ALERTS ============ */
.alert {
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 0.84rem;
    padding: 12px 20px;
    font-weight: 500;
}

.alert-success {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #065f46;
}

.alert-danger {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    color: #991b1b;
}

.alert-info {
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    color: #134e4a;
}

.alert-warning {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    color: #92400e;
}

/* ============ RESPONSIVE ============ */

/* Tablet */
@media (max-width: 992px) {
    .sidebar {
        width: 0;
        overflow: hidden;
    }

    .sidebar.show {
        width: 260px;
        box-shadow: 8px 0 30px rgba(0, 0, 0, 0.3);
    }

    .main-content {
        margin-left: 0 !important;
    }
}

/* Small screens */
@media (max-width: 768px) {
    .topbar {
        padding: 0 16px;
        height: 58px;
    }

    .topbar .logo-wrapper img {
        height: 32px;
    }

    .topbar .app-title {
        font-size: 0.88rem;
    }

    .main-content {
        margin-top: 58px;
        padding: 20px 16px;
    }

    .sidebar {
        top: 58px;
        height: calc(100vh - 58px);
    }

    .sidebar-overlay {
        top: 58px;
    }

    .page-header h4 {
        font-size: 1.15rem;
    }

    .page-header {
        margin-bottom: 20px;
    }

    .stats-card .stats-number {
        font-size: 1.6rem;
    }

    .stats-card .stats-label {
        font-size: 0.75rem;
    }

    .stats-card {
        padding: 18px;
    }

    .modal-dialog {
        margin: 12px;
    }

    .modal-body {
        padding: 20px 16px;
    }

    .modal-header,
    .modal-footer {
        padding: 14px 16px;
    }
}

/* Extra small / Mobile */
@media (max-width: 576px) {
    .topbar {
        padding: 0 12px;
        height: 54px;
        gap: 8px;
    }

    .topbar .app-title {
        font-size: 0.82rem;
    }

    .topbar .app-subtitle {
        display: none;
    }

    .topbar .logo-wrapper {
        gap: 8px;
    }

    .topbar .logo-wrapper img {
        height: 28px;
    }

    .btn-toggle-sidebar {
        padding: 5px 9px;
        font-size: 1.2rem;
    }

    .main-content {
        margin-top: 54px;
        padding: 16px 12px;
    }

    .sidebar {
        top: 54px;
        height: calc(100vh - 54px);
    }

    .sidebar-overlay {
        top: 54px;
    }

    .page-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 16px;
        gap: 8px;
    }

    .page-header h4 {
        font-size: 1.05rem;
    }

    .page-header .breadcrumb {
        font-size: 0.72rem;
    }

    .page-header .d-flex.gap-2 {
        width: 100%;
        flex-wrap: wrap;
    }

    .page-header .badge {
        font-size: 0.72rem !important;
    }

    /* Stat cards 2-column layout */
    .stats-card {
        padding: 14px;
    }

    .stats-card .stats-number {
        font-size: 1.35rem;
    }

    .stats-card .stats-label {
        font-size: 0.7rem;
    }

    .stats-card .stats-icon {
        font-size: 1.6rem;
    }

    /* Card adjustments */
    .card {
        border-radius: var(--border-radius-sm);
    }

    .card-header {
        padding: 12px 14px;
        font-size: 0.84rem;
    }

    .card-body {
        padding: 14px;
    }

    /* Table mobile */
    .table {
        font-size: 0.78rem;
    }

    .table thead th {
        padding: 8px 10px;
        font-size: 0.68rem;
        letter-spacing: 0.4px;
    }

    .table tbody td {
        padding: 8px 10px;
    }

    /* Mobile Cek Nilai Table to Cards */
    .table-cek-nilai thead {
        display: none;
    }

    .table-cek-nilai,
    .table-cek-nilai tbody,
    .table-cek-nilai tr {
        display: block;
        width: 100%;
        border: none !important;
    }

    .table-cek-nilai tr {
        margin-bottom: 16px;
        background: #fff;
        border: 1px solid #f1f5f9 !important;
        border-radius: 12px;
        padding: 12px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    }

    .table-cek-nilai td {
        display: flex !important;
        justify-content: space-between;
        align-items: flex-start;
        text-align: right;
        padding: 8px 4px !important;
        border: none !important;
        border-bottom: 1px dashed #e2e8f0 !important;
        gap: 12px;
    }

    .table-cek-nilai td:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }

    .table-cek-nilai td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #64748b;
        font-size: 0.7rem;
        text-transform: uppercase;
        flex-shrink: 0;
        max-width: 40%;
        text-align: left;
        letter-spacing: 0.5px;
    }

    .table-cek-nilai .td-no {
        display: none !important;
    }

    /* Show mobile name and desktop name as blocks on mobile */
    .table-cek-nilai .td-nama,
    .table-cek-nilai .td-nama-mobile {
        display: block !important;
        text-align: left;
        background: #f8fafb;
        padding: 12px !important;
        border-radius: 8px;
        margin-bottom: 10px;
        border-bottom: none !important;
    }

    .table-cek-nilai .td-nama::before,
    .table-cek-nilai .td-nama-mobile::before {
        display: none;
        /* Student name is obvious without label */
    }

    .table-cek-nilai .td-aksi {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .table-cek-nilai .td-aksi::before {
        align-self: flex-start;
        margin-bottom: 4px;
    }

    .table-cek-nilai .td-aksi .btn {
        width: 100% !important;
        margin-top: 0 !important;
    }

    /* Generic Mobile Card Table (e.g., Nomor Ijazah) */
    .table-mobile-card thead {
        display: none;
    }

    .table-mobile-card,
    .table-mobile-card tbody,
    .table-mobile-card tr {
        display: block !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        border: none !important;
    }

    .table-mobile-card tr {
        margin-bottom: 16px;
        background: #fff;
        border: 1px solid #e2e8f0 !important;
        border-radius: 12px;
        padding: 12px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    }

    .table-mobile-card td {
        display: flex !important;
        width: 100% !important;
        /* Force override DataTables inline width calculations */
        justify-content: space-between;
        align-items: flex-start;
        text-align: right;
        padding: 8px 12px !important;
        border: none !important;
        border-bottom: 1px dashed #e2e8f0 !important;
        gap: 12px;
        word-break: normal !important;
        white-space: normal !important;
    }

    /* Target the actual text content inside the td, excluding the ::before pseudo element */
    .table-mobile-card td>* {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        max-width: 100% !important;
        width: auto !important;
        text-align: right;
        white-space: normal !important;
    }

    .table-mobile-card td:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }

    .table-mobile-card td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #64748b;
        font-size: 0.7rem;
        text-transform: uppercase;
        flex-shrink: 0;
        width: 40%;
        /* Fixed width for labels so content has predictable space left */
        text-align: left;
        letter-spacing: 0.5px;
    }

    .table-mobile-card .mobile-no {
        display: none !important;
    }

    .table-mobile-card .mobile-nama {
        display: block !important;
        text-align: left;
        background: #f8fafb;
        padding: 10px 12px !important;
        border-radius: 8px;
        margin-bottom: 8px;
        border-bottom: none !important;
    }

    .table-mobile-card .mobile-nama::before {
        display: none;
    }

    .table-mobile-card .mobile-action {
        display: block !important;
        text-align: left;
        padding-top: 12px !important;
    }

    .table-mobile-card .mobile-action::before {
        display: block;
        margin-bottom: 8px;
    }

    .dataTables_wrapper .dataTables_length,
    .dataTables_wrapper .dataTables_filter,
    .dataTables_wrapper .dataTables_info,
    .dataTables_wrapper .dataTables_paginate {
        text-align: center;
        justify-content: center;
        margin-bottom: 15px;
    }

    .dataTables_wrapper .dataTables_filter input {
        width: 100%;
        max-width: none;
    }

    .dataTables_wrapper .dataTables_filter input:focus {
        width: 100%;
    }

    /* Strict container constraints for mobile to avoid any overflow/clipping bugs */
    .card-body {
        padding: 12px 10px !important;
        /* Reduce padding on mobile so content has more room */
    }

    .table-responsive {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        /* Force hide horizontal scrollbar which causes clipping */
    }

    .dataTables_wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    /* Neutralize Bootstrap negative grid margins on mobile tables */
    .dataTables_wrapper .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }

    .dataTables_wrapper [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
    }

    .dataTables_wrapper .dataTables_paginate {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 4px;
        padding-bottom: 20px;
        justify-content: center !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Target the inner span that holds the numbers to ensure they wrap and fit on screen */
    .dataTables_wrapper .dataTables_paginate span {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 4px;
        margin: 4px 0;
        max-width: 100%;
        /* Prevent inner span from stretching off-screen */
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button {
        margin: 2px 0 !important;
        padding: 5px 10px !important;
        flex: 0 0 auto;
    }

    /* Disable DataTables default responsive chevron when using mobile card layout */
    .table-mobile-card td.dtr-control::before {
        display: none !important;
    }

    .table-mobile-card td.dtr-control {
        padding-left: 12px !important;
    }

    /* Login */
    .login-card {
        margin: 16px;
        padding: 32px 24px;
        border-radius: 20px;
        /* Aligned with top border pseudo-element radius */
    }

    .login-card .login-title {
        font-size: 1.1rem;
    }

    .login-card .login-subtitle {
        font-size: 0.78rem;
    }

    .login-card .login-logo img {
        height: 56px;
    }

    /* Buttons */
    .btn {
        font-size: 0.78rem;
        padding: 7px 14px;
    }

    .btn-sm {
        font-size: 0.72rem;
        padding: 5px 10px;
    }

    .btn-icon {
        width: 30px;
        height: 30px;
    }

    /* Modals & SweetAlert2 */
    .swal2-popup {
        padding: 1rem !important;
        font-size: 0.8rem !important;
        width: 90% !important;
    }

    .swal2-title {
        font-size: 1.1rem !important;
    }

    /* Forms */
    .form-control,
    .form-select {
        font-size: 0.9rem;
        padding: 12px 14px;
        border-radius: 10px;
    }

    .form-label {
        font-size: 0.8rem;
        margin-bottom: 8px;
        color: #475569;
    }

    .row.g-3 {
        --bs-gutter-y: 1.25rem;
    }

    /* DataTables */
    .dataTables_wrapper .dataTables_filter input {
        width: 120px !important;
        font-size: 0.78rem;
        padding: 6px 10px;
    }

    div.dataTables_wrapper div.dataTables_info {
        font-size: 0.7rem;
        text-align: center;
        margin-bottom: 8px;
    }

    .dataTables_wrapper .dataTables_length select {
        font-size: 0.78rem;
        padding: 4px 24px 4px 8px;
        min-width: 50px;
    }

    .dataTables_wrapper .dataTables_paginate {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 4px;
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button {
        padding: 4px 8px !important;
        font-size: 0.75rem !important;
    }

    /* Alert */
    .alert {
        font-size: 0.78rem;
        padding: 10px 14px;
    }

    /* Modal full width */
    .modal-dialog {
        margin: 8px;
    }

    .modal-footer .btn {
        flex: 1;
    }
}

/* Ultra small (375px and below) */
@media (max-width: 400px) {

    /* Tighter topbar */
    .topbar {
        padding: 0 8px;
        height: 50px;
        gap: 6px;
    }

    .topbar .logo-wrapper {
        gap: 6px;
    }

    .topbar .logo-wrapper img {
        height: 24px;
    }

    .topbar .app-title {
        font-size: 0.75rem;
        letter-spacing: 0;
    }

    .btn-toggle-sidebar {
        padding: 4px 8px;
        font-size: 1.1rem;
    }

    /* Main content flush */
    .main-content {
        margin-top: 50px;
        padding: 12px 8px;
    }

    .sidebar {
        top: 50px;
        height: calc(100vh - 50px);
    }

    .sidebar-overlay {
        top: 50px;
    }

    /* Header stacking completely */
    .page-header {
        margin-bottom: 12px;
        gap: 6px;
    }

    .page-header h4 {
        font-size: 1rem;
    }

    .page-header .breadcrumb {
        font-size: 0.7rem;
    }

    .page-header .d-flex.gap-2 {
        gap: 4px !important;
    }

    .page-header .d-flex.gap-2 .btn {
        flex: 1;
        /* Make buttons stretch evenly */
        padding: 6px 4px;
        font-size: 0.7rem;
        text-align: center;
    }

    /* Stats Cards - force compact */
    .row.g-3 {
        --bs-gutter-x: 0.5rem;
        --bs-gutter-y: 0.5rem;
    }

    .stats-card {
        padding: 12px;
    }

    .stats-card .stats-number {
        font-size: 1.15rem;
    }

    .stats-card .stats-label {
        font-size: 0.65rem;
        line-height: 1.2;
    }

    .stats-card .stats-icon {
        font-size: 1.3rem;
        opacity: 0.5;
        /* Reduce visual weight */
    }

    /* Table adjustments for extreme small screens */
    .card-header {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .card-body {
        padding: 10px;
    }

    .table {
        font-size: 0.7rem;
    }

    .table thead th {
        padding: 6px;
        font-size: 0.6rem;
    }

    .table tbody td {
        padding: 6px;
    }

    /* Buttons inside tables */
    .action-buttons {
        display: flex;
        gap: 2px;
    }

    .action-buttons .btn-icon {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
    }

    /* Forms & Modal */
    .form-label {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }

    .form-control,
    .form-select {
        font-size: 0.75rem;
        padding: 7px 10px;
    }

    .modal-dialog {
        margin: 4px;
    }

    .modal-header {
        padding: 12px 14px;
    }

    .modal-body {
        padding: 14px 12px;
    }

    .modal-footer {
        padding: 10px 12px;
        flex-direction: column;
        gap: 6px;
    }

    .modal-footer .btn {
        width: 100%;
        /* Full width buttons on modal */
        margin: 0;
    }

    /* Login */
    .login-card {
        margin: 12px;
        padding: 24px 16px;
    }

    .login-card .login-title {
        font-size: 1rem;
    }

    .login-card .login-subtitle {
        font-size: 0.7rem;
        margin-bottom: 20px;
    }

    .login-card .login-logo img {
        height: 48px;
        margin-bottom: 12px;
    }

    .dataTables_wrapper .dataTables_length select {
        font-size: 0.75rem;
        padding: 4px 20px 4px 6px;
        min-width: 45px;
    }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ============ MISC ============ */
.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cursor-pointer {
    cursor: pointer;
}

.action-buttons .btn {
    margin: 0 2px;
}

/* Scrollbar for table-responsive */
.table-responsive::-webkit-scrollbar {
    height: 5px;
}

.table-responsive::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: rgba(13, 148, 136, 0.25);
    border-radius: 4px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
    background: rgba(13, 148, 136, 0.4);
}

/* Code tag styling */
code {
    color: var(--primary-dark);
    background: var(--primary-light);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.82em;
    font-weight: 600;
}

/* Selection color */
::selection {
    background: rgba(13, 148, 136, 0.2);
    color: var(--dark);
}

/* ============ SWEETALERT ELEGANT STYLES ============ */
.swal2-elegant-popup {
    border-radius: 16px !important;
    padding: 3em 2em !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06) !important;
}

.swal2-elegant-title {
    margin-bottom: 0 !important;
    padding: 0 !important;
}

.swal2-elegant-html {
    margin-top: 0 !important;
    padding: 0 !important;
}

.swal2-elegant-input {
    border: 2px solid #3b82f6 !important;
    border-radius: 10px !important;
    font-size: 1.25rem !important;
    font-weight: 400 !important;
    padding: 12px 16px !important;
    color: #475569 !important;
    box-shadow: none !important;
    transition: all 0.2s ease !important;
    width: 80% !important;
    max-width: 280px !important;
    margin: 2em auto !important;
    text-align: center !important;
    appearance: textfield !important;
    -moz-appearance: textfield !important;
}

.swal2-elegant-input::-webkit-outer-spin-button,
.swal2-elegant-input::-webkit-inner-spin-button {
    appearance: none !important;
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.swal2-elegant-input:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15) !important;
}

.swal2-minimalist-actions {
    gap: 16px;
    margin-top: 0 !important;
}

.swal2-btn-simpan {
    background-color: #e6f6f2 !important;
    color: #0f766e !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    padding: 10px 24px !important;
    border: none !important;
    min-width: 120px;
    transition: all 0.2s ease;
}

.swal2-btn-simpan:hover {
    background-color: #d1efdf !important;
}

.swal2-btn-batal {
    background-color: #64748b !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    padding: 10px 24px !important;
    border: none !important;
    min-width: 120px;
    transition: all 0.2s ease;
}

.swal2-btn-batal:hover {
    background-color: #475569 !important;
}

/* ============ BULK ACTION BAR ANIMATION ============ */
@keyframes bulkFadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.bulk-fade-in-up {
    animation: bulkFadeInUp 0.3s ease-out forwards;
}