:root {
    --bg-main: #07403A;
    --bg-surface: #ffffff;
    --accent: #F6D64A;
    --text-on-main: #ffffff;
    --text-on-surface: #1f2937;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --input-bg: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-on-main);
    -webkit-font-smoothing: antialiased;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto !important;
}

body.no-scroll {
    overflow: hidden !important;
    height: 100vh;
    position: fixed;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

a:hover {
    color: var(--accent);
}

.text-center {
    text-align: center;
}

.text-danger {
    color: #dc2626;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.auth-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 1rem;
}

.card {
    background-color: var(--bg-surface);
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    color: var(--text-on-surface);
}

.card-auth {
    width: 100%;
    max-width: 400px;
    padding: 2.5rem;
}

.card-empty {
    padding: 3rem;
    text-align: center;
    border: 2px dashed #d1d5db;
    background-color: var(--bg-surface);
    border-radius: 0.75rem;
    color: var(--text-on-surface);
}

.auth-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-main);
    margin-bottom: 1.5rem;
    text-align: center;
}

.empty-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.empty-subtitle {
    color: var(--text-muted);
}

.alert-danger {
    background-color: #fef2f2;
    color: #dc2626;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    border: 1px solid #fecaca;
}

.badge {
    background-color: var(--bg-main);
    color: var(--accent);
    padding: 0.25rem 0.6rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 0.5rem;
    border: 1px solid var(--accent);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-on-surface);
    margin-bottom: 0.35rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    outline: none;
    font-size: 1rem;
    transition: all 0.2s;
    background-color: #f9fafb;
    color: var(--text-on-surface);
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(246, 74, 74, 0.2);
    background-color: #fff;
}

.btn {
    display: inline-block;
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s, transform 0.1s;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-main);
    border: 2px solid var(--bg-main);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--bg-main);
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-logout {
    background: none;
    border: none;
    color: #dc2626;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-logout:hover {
    color: #b91c1c;
}

.navbar {
    height: auto;
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    padding: 1.5rem 2rem;
    border-bottom: none;
    color: var(--text-on-main);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    top: 0;
    z-index: 900;
}

.nav-brand {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #ffffff;
}

.nav-separator {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 1.2rem;
}

.btn-logout {
    color: #ffffff;
    opacity: 0.8;
    transition: all 0.2s;
}

.btn-logout:hover {
    color: var(--accent);
    opacity: 1;
    text-shadow: 0 0 10px rgba(246, 214, 74, 0.5);
}

.nav-badge {
    background: rgba(246, 214, 74, 0.2);
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 2px;
    display: inline-block;
}

.container {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.layout-wrapper {
    display: flex;
    height: auto;
    min-height: 100vh;
    overflow: visible;
}

.main-content {
    flex: 1;
    display: flex;
    margin-left: 260px;
    width: calc(100% - 260px);
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    background-color: var(--bg-main);
    transition: all 0.3s ease-in-out;
}

.main-content h3,
.main-content h4 {
    color: var(--bg-main);
}

.page-header-title {
    color: var(--text-on-main);
}

.table-container {
    overflow-x: auto;
    width: 100%;
    background-color: var(--bg-surface);
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
}

.custom-table th,
.custom-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-on-surface);
}

.custom-table th {
    background-color: #f8fafc;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 700;
}

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

.custom-table tr:hover td {
    background-color: #f9fafb;
}

.sidebar {
    width: 260px;
    height: 100vh;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--bg-main);
    z-index: 1050;
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar-header {
    flex-shrink: 0;
    width: 100%;
    z-index: 2;
    padding: 15px 10px;
    background-color: var(--bg-main);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.sidebar-header img {
    max-width: 100%;
    height: 70px !important;
    object-fit: contain;
}

.sidebar-header h4 {
    margin: 0;
    font-size: 1rem !important;
    font-weight: 700;
    color: white;
}

.sidebar-nav {
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1rem;
    width: 100%;
    min-height: 0;
    padding-bottom: 2rem;
}

.sidebar-link {
    display: block;
    padding: 10px 15px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: 600;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
    font-size: 0.9rem;
    border: 1px solid transparent;
    z-index: 2;
}

.sidebar-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateX(5px);
    border-left: 3px solid var(--text-on-main);
}

.sidebar-link.active {
    background-color: var(--accent);
    color: var(--bg-main);
    font-weight: 800;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border-left: 3px solid var(--text-on-main);
}

.sidebar-footer-link {
    color: var(--accent) !important;
    border: 1px solid var(--accent);
    background: transparent;
    flex-shrink: 0;
    width: 100%;
    z-index: 2;
}

.sidebar-footer-link:hover {
    background: var(--accent);
    color: var(--bg-main) !important;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.compact-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

.compact-content {
    background-color: #ffffff;
    border-radius: 12px;
    width: 90%;
    max-width: 480px;
    padding: 0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    animation: modalPopUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    overflow: hidden;
}

@keyframes modalPopUp {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    background-color: #f8fafc;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bg-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-close-modal {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-close-modal:hover {
    color: #ef4444;
}

.modal-body {
    padding: 1.5rem;
}

.compact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
}

.compact-grid .form-group {
    margin-bottom: 0;
}

.compact-grid .form-label {
    font-size: 0.8rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.compact-grid .form-control {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    border-radius: 6px;
}

.disabled-select {
    background-color: #f1f5f9;
    color: #64748b;
    cursor: not-allowed;
}

.modal-footer {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-save {
    background: var(--bg-main);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-save:hover {
    opacity: 0.9;
}

.btn-cancel {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #cbd5e1;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-cancel:hover {
    background: #e2e8f0;
}

.kpi-wrapper {
    display: none;
    transition: all 0.3s ease;
}

.kpi-wrapper.active {
    display: block;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes swing {
    0% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(15deg);
    }

    40% {
        transform: rotate(-10deg);
    }

    60% {
        transform: rotate(5deg);
    }

    80% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-login {
    background-color: var(--bg-surface);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 4px solid var(--accent);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
    width: 90%;
    display: flex;
    flex-direction: column;
}

.login-header {
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
}

.login-header i {
    font-size: 2.5rem;
    color: var(--bg-main);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(217, 119, 6, 0.3);
    display: block;
}

.login-title {
    color: var(--bg-main);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 250px;
    background-color: var(--bg-surface);
    border: 4px solid var(--accent);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.5);
    border-color: var(--accent);
}

.project-desc {
    font-size: 1rem;
    color: var(--text-on-surface);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.section-header h2 {
    color: var(--accent);
    font-weight: 800;
    font-size: 2rem;
}

.section-header p {
    color: var(--text-on-main);
    font-size: 1rem;
}

.logo-wrapper {
    width: 100px;
    height: 100px;
    background-color: var(--bg-main);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--accent);
    overflow: hidden;
}

.logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-placeholder {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent);
}

.alert-overdue {
    background-color: #fee2e2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.alert-icon-danger {
    background-color: #ef4444;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.alert-overdue h4 {
    margin: 0 0 4px 0;
    font-size: 1rem;
    font-weight: 700;
}

.alert-overdue p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.4;
}

.alert-pic-list {
    margin-top: 8px;
    font-size: 0.85rem;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #fca5a5;
}

.alert-pending {
    background-color: #fff7ed;
    border: 1px solid #ffedd5;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 5px rgba(251, 146, 60, 0.05);
}

.alert-icon-warning {
    background-color: #f97316;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #e2e8f0;
}

.stat-title {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 700;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.stat-total {
    border-top-color: #0f172a;
}

.stat-tidak-prospek {
    border-top-color: #94a3b8;
}

.stat-cold {
    border-top-color: #3b82f6;
}

.stat-warm {
    border-top-color: #f59e0b;
}

.stat-hot {
    border-top-color: #ef4444;
}

.stat-gagal {
    border-top-color: #7f1d1d;
}

.chart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.chart-card {
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.chart-title {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #1e293b;
    font-size: 1rem;
    font-weight: 700;
}

.chart-container {
    height: 250px;
    position: relative;
}

.dashboard-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.dashboard-card-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #1e293b;
}

.select-status {
    font-size: 0.7rem;
    padding: 2px 20px 2px 6px;
    border-radius: 4px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    font-weight: 600;
    width: auto;
}

.select-icon {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6rem;
    pointer-events: none;
    opacity: 0.6;
}

.badge-kpi-success {
    background: #dcfce7;
    color: #166534;
}

.badge-kpi-warning {
    background: #ffedd5;
    color: #9a3412;
}

.badge-kpi-danger {
    background: #fee2e2;
    color: #991b1b;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .chart-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .alert-pending {
        flex-direction: column;
        align-items: flex-start;
    }
}


.select-status {
    font-size: 0.7rem;
    padding: 2px 20px 2px 6px;
    border-radius: 4px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    font-weight: 600;
    width: auto;
    transition: all 0.2s;
}

.status-cold-lead {
    background: #bae6fd;
    color: #0369a1;
    border: 1px solid #7dd3fc;
}

.status-warm-lead {
    background: #fde68a;
    color: #92400e;
    border: 1px solid #f59e0b;
}

.status-hot-prospek {
    background: #fecdd3;
    color: #be123c;
    border: 1px solid #fb7185;
}

.status-deal {
    background: #a7f3d0;
    color: #064e3b;
    border: 1px solid #34d399;
}

.status-gagal-closing {
    background: #a61b1b;
    color: #ffffff;
    border: 1px solid #7f1d1d;
}

.status-tidak-prospek {
    background: #cbd5e1;
    color: #1e293b;
    border: 1px solid #94a3b8;
}

.status-default {
    background: #e2e8f0;
    color: #475569;
    border: 1px solid #cbd5e1;
}

.btn-alert-action {
    background: #ea580c;
    color: white;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s;
    box-shadow: 0 2px 4px rgba(234, 88, 12, 0.2);
}

.btn-alert-action:hover {
    background: #c2410c;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-on-main);
    margin-right: 15px;
}

.close-sidebar-btn {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1002;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

.sidebarOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    cursor: pointer;
}

.sidebarOverlay.active {
    display: block;
}

@media (max-width: 768px) {

    .sidebar {
        transform: translateX(-100%);
    }

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

    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
    }

    .navbar.mobile-responsive {
        padding: 0.8rem 1rem !important;
        flex-direction: column;
        align-items: flex-start !important;
        height: auto;
    }

    .container.mobile-responsive {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .mobile-toggle {
        display: block !important;
        font-size: 1.5rem;
        margin-right: 15px;
        background: none;
        border: none;
        color: var(--accent);
    }

    .close-sidebar-btn {
        display: block !important;
    }

    .navbar {
        padding: 0.8rem 1rem !important;
        height: auto !important;
        min-height: 60px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .nav-left {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 0.5rem;
    }

    .nav-brand {
        font-size: 1.1rem !important;
        white-space: nowrap;
        padding-bottom: 0.5rem;
    }

    .nav-user {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-user strong {
        display: block !important;
        font-size: 0.9rem;
        color: #333;
        max-width: 150px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-separator {
        display: none !important;
    }

    .btn-logout {
        padding: 6px 10px;
        background-color: #fee2e2;
        border-radius: 6px;
    }

    .btn-logout span {
        display: none;
    }

    .btn-logout i {
        margin: 0 !important;
        color: #ef4444;
        font-size: 1rem;
    }

    .section-header.mobile-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .section-header h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .header-actions {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .header-actions .btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px 1rem !important;
        margin: 0 !important;
    }
}

.custom-pagination-wrapper {
    padding: 1rem 1.5rem;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.custom-pagination-wrapper nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.custom-pagination-wrapper p {
    margin: 0;
    font-size: 0.85rem;
    color: #64748b;
}

.custom-pagination-wrapper .relative.z-0.inline-flex,
.custom-pagination-wrapper ul.pagination {
    display: inline-flex;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
    box-shadow: none;
}

.custom-pagination-wrapper a,
.custom-pagination-wrapper span[aria-disabled="true"] span,
.custom-pagination-wrapper span[aria-current="page"] span,
.custom-pagination-wrapper .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px !important;
    text-decoration: none;
    transition: all 0.2s;
}

.custom-pagination-wrapper a:hover,
.custom-pagination-wrapper .page-link:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    color: #1e293b;
}

.custom-pagination-wrapper span[aria-current="page"] span,
.custom-pagination-wrapper .active .page-link {
    background: var(--bg-main);
    color: #ffffff !important;
    border-color: var(--bg-main);
    z-index: 2;
}

.custom-pagination-wrapper svg {
    width: 1.2rem;
    height: 1.2rem;
}

.btn-reset-filter {
    background-color: #fee2e2;
    color: #ef4444;
    border: 1px solid #fecaca;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-reset-filter:hover {
    background-color: #fecaca;
    color: #dc2626;
    border-color: #fca5a5;
    transform: translateY(-1px);
}

.btn-reset-filter:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-reset-filter i {
    font-size: 0.9rem;
}