/* ============================================
   TA'ARUF ADMIN DASHBOARD — Custom Stylesheet
   ============================================ */

:root {
    --primary: #0B5D4B;
    --primary-light: #0F766E;
    --primary-soft: #ECFDF5;
    --primary-gradient: linear-gradient(135deg, #0B5D4B 0%, #0F766E 50%, #14B8A6 100%);
    --sidebar-gradient: linear-gradient(180deg, #063B30 0%, #0B5D4B 40%, #0F766E 100%);
    --btn-brand: #0F6454;
    --btn-brand-hover: #0d5648;
    --btn-brand-active: #0a453a;
    --white: #ffffff;
    --bg: #F4F7FA;
    --text: #1E293B;
    --text-muted: #64748B;
    --border: #E2E8F0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow: 0 4px 16px rgba(0,0,0,.07);
    --shadow-lg: 0 10px 40px rgba(0,0,0,.1);
    --radius: 14px;
    --radius-lg: 18px;
    --sidebar-w: 260px;
    --topbar-h: 64px;
    --transition: .25s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; font-weight: 600; }

/* ======= LAYOUT ======= */
.admin-wrapper { display: flex; min-height: 100vh; }
.admin-main { flex: 1; margin-left: var(--sidebar-w); min-width: 0; display: flex; flex-direction: column; }
.main-content { padding: 28px 32px 40px; flex: 1; }

/* ======= SIDEBAR ======= */
.admin-sidebar {
    width: var(--sidebar-w); position: fixed; top: 0; left: 0; bottom: 0;
    background: var(--sidebar-gradient);
    z-index: 1040; display: flex; flex-direction: column;
    transition: transform var(--transition);
    overflow-y: auto; overflow-x: hidden;
}
.admin-sidebar::-webkit-scrollbar { width: 4px; }
.admin-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,.2); border-radius: 4px; }

.sidebar-brand {
    padding: 22px 20px 18px; display: flex; align-items: center;
    justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.1);
}
.sidebar-logo { display: flex; align-items: center; gap: 12px; }
.logo-img { width: 42px; height: 42px; border-radius: 12px; object-fit: cover; background: rgba(255,255,255,.15); }
.logo-text h5 { color: #fff; margin: 0; font-size: 16px; letter-spacing: 1.5px; font-weight: 700; }
.logo-text span { color: rgba(255,255,255,.55); font-size: 11px; }

.sidebar-close {
    background: rgba(255,255,255,.1); border: none; color: #fff; width: 32px; height: 32px;
    border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer;
}

.sidebar-nav { flex: 1; padding: 14px 12px; }
.nav-menu { list-style: none; padding: 0; margin: 0; }

.nav-link {
    display: flex; align-items: center; gap: 12px; padding: 11px 14px; color: rgba(255,255,255,.72);
    text-decoration: none; border-radius: 10px; font-size: 13.5px; font-weight: 500;
    transition: all var(--transition); position: relative; margin-bottom: 2px;
}
.nav-link:hover { background: rgba(255,255,255,.1); color: #fff; transform: translateX(3px); }
.nav-link.active { background: rgba(255,255,255,.16); color: #fff; font-weight: 600; }
.nav-link i:first-child { font-size: 17px; width: 22px; text-align: center; }

.submenu-arrow { margin-left: auto; font-size: 11px; transition: transform var(--transition); }
.nav-link[aria-expanded="true"] .submenu-arrow { transform: rotate(180deg); }

.nav-badge {
    margin-left: auto; background: #EF4444; color: #fff; font-size: 10px;
    padding: 2px 7px; border-radius: 10px; font-weight: 700;
}

.submenu { list-style: none; padding: 4px 0 4px 20px; margin: 0; }
.submenu-link {
    display: flex; align-items: center; gap: 10px; padding: 9px 14px;
    color: rgba(255,255,255,.55); text-decoration: none; font-size: 13px;
    border-radius: 8px; transition: all var(--transition);
}
.submenu-link:hover { color: #fff; background: rgba(255,255,255,.08); }
.submenu-link.active {
    color: #fff; background: rgba(255,255,255,.15);
    font-weight: 600; box-shadow: inset 3px 0 0 #34D399;
}
.submenu-link i { font-size: 14px; }

.sidebar-profile {
    padding: 14px 16px; border-top: 1px solid rgba(255,255,255,.1);
}
.profile-avatar { display: flex; align-items: center; gap: 10px; }
.avatar-circle {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 16px;
}
.profile-info h6 { color: #fff; margin: 0; font-size: 13px; }
.profile-info span { color: rgba(255,255,255,.5); font-size: 11px; }

.sidebar-status { padding: 0 16px 18px; }
.status-card {
    background: rgba(255,255,255,.08); border-radius: 10px; padding: 12px 14px;
    backdrop-filter: blur(6px);
}
.status-indicator { display: flex; align-items: center; gap: 8px; }
.status-dot {
    width: 8px; height: 8px; border-radius: 50%; background: #34D399;
    box-shadow: 0 0 8px #34D399; animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.status-text { color: rgba(255,255,255,.85); font-size: 12px; font-weight: 500; }
.status-details small { color: rgba(255,255,255,.4); font-size: 11px; }

/* Mobile sidebar overlay */
.sidebar-overlay {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45);
    z-index: 1035; backdrop-filter: blur(2px);
}
.sidebar-overlay.active { display: block; }

/* ======= TOPBAR ======= */
.admin-topbar {
    min-height: var(--topbar-h); background: var(--white);
    border-bottom: 1px solid var(--border); display: flex;
    align-items: center; justify-content: space-between;
    padding: 0 28px; position: sticky; top: 0; z-index: 1020;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.admin-topbar:has(.topbar-page-title) {
    padding-top: 10px;
    padding-bottom: 10px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 16px; }

.sidebar-toggle {
    background: none; border: none; font-size: 22px; color: var(--text);
    cursor: pointer; padding: 6px; border-radius: 8px; transition: all var(--transition);
}
.sidebar-toggle:hover { background: var(--primary-soft); color: var(--primary); }

.breadcrumb { font-size: 13px; }
.breadcrumb-item a { color: var(--text-muted); text-decoration: none; }
.breadcrumb-item a:hover { color: var(--primary); }
.breadcrumb-item.active { color: var(--primary); font-weight: 600; }

.topbar-heading {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.topbar-page-title {
    font-size: 1.125rem;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topbar-breadcrumb .breadcrumb {
    margin-bottom: 0;
}

.topbar-search { position: relative; }
.search-wrapper {
    position: relative; display: flex; align-items: center;
}
.search-wrapper i { position: absolute; left: 12px; color: var(--text-muted); font-size: 14px; }
.search-wrapper .form-control {
    padding-left: 36px; padding-right: 60px; height: 38px; border-radius: 10px;
    border: 1px solid var(--border); font-size: 13px; width: 240px;
    background: var(--bg); transition: all var(--transition);
}
.search-wrapper .form-control:focus {
    width: 300px; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(11,93,75,.1);
    background: #fff;
}
.search-shortcut {
    position: absolute; right: 10px; background: var(--border); padding: 2px 6px;
    border-radius: 4px; font-size: 10px; color: var(--text-muted);
}

.topbar-icon-btn {
    position: relative; background: none; border: none; font-size: 20px;
    color: var(--text-muted); cursor: pointer; padding: 6px; border-radius: 8px;
    transition: all var(--transition);
}
.topbar-icon-btn:hover { background: var(--primary-soft); color: var(--primary); }
.notification-dot {
    position: absolute; top: 4px; right: 4px; width: 8px; height: 8px;
    background: #EF4444; border-radius: 50%; border: 2px solid #fff;
}

.notification-dropdown { width: 340px; border: none; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 0; }
.notification-dropdown .dropdown-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 16px; border-bottom: 1px solid var(--border);
}
.notification-dropdown .dropdown-header h6 { margin: 0; font-size: 14px; }
.notification-dropdown .dropdown-header a { font-size: 12px; color: var(--primary); text-decoration: none; }
.notification-item {
    display: flex; align-items: flex-start; gap: 12px; padding: 12px 16px !important;
    transition: background var(--transition);
}
.notification-item.unread { background: var(--primary-soft); }
.notif-icon {
    width: 36px; height: 36px; border-radius: 10px; display: flex;
    align-items: center; justify-content: center; flex-shrink: 0;
}
.notif-content p { margin: 0; font-size: 13px; font-weight: 500; }
.notif-content small { color: var(--text-muted); font-size: 11px; }

.profile-btn {
    display: flex; align-items: center; gap: 10px; background: none;
    border: none; cursor: pointer; padding: 6px 10px; border-radius: 10px;
    transition: all var(--transition);
}
.profile-btn:hover { background: var(--primary-soft); }
.topbar-avatar {
    width: 36px; height: 36px; border-radius: 10px; background: var(--primary-gradient);
    display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px;
}
.profile-text { text-align: left; line-height: 1.3; }
.profile-name { display: block; font-size: 13px; font-weight: 600; color: var(--text); }
.profile-role { display: block; font-size: 11px; color: var(--text-muted); }
.profile-btn .bi-chevron-down { font-size: 12px; color: var(--text-muted); }

.profile-dropdown { border: none; border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 180px; }
.profile-dropdown .dropdown-item { font-size: 13px; padding: 8px 16px; transition: all var(--transition); }
.profile-dropdown .dropdown-item:hover { background: var(--primary-soft); color: var(--primary); }

/* ======= PAGE HEADER ======= */
.page-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 28px; flex-wrap: wrap; gap: 12px;
}
.page-title { font-size: 22px; color: var(--text); margin: 0 0 4px; display: flex; align-items: center; gap: 10px; }
.page-title i { color: var(--primary); font-size: 24px; }
.page-subtitle { font-size: 13.5px; color: var(--text-muted); margin: 0; }
.badge-status {
    display: inline-flex; align-items: center; gap: 6px;
    background: #FEF3C7; color: #D97706; font-size: 12px;
    padding: 6px 14px; border-radius: 20px; font-weight: 600;
}

/* ======= ALERTS ======= */
.custom-alert {
    border: none; border-radius: var(--radius); display: flex;
    align-items: flex-start; gap: 12px; padding: 16px 20px;
    animation: slideDown .35s ease;
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
.alert-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.alert-content { flex: 1; font-size: 13.5px; }

/* ======= STEPPER ======= */
.stepper-wrapper {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 24px 32px; margin-bottom: 28px; box-shadow: var(--shadow-sm);
    overflow-x: auto;
}
.stepper-container {
    display: flex; align-items: center; justify-content: center;
    min-width: 500px; gap: 0;
}
.stepper-step {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    flex-shrink: 0; cursor: pointer; transition: all var(--transition);
}
.step-circle {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--border); color: var(--text-muted);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 15px; transition: all var(--transition);
    border: 3px solid transparent;
}
.stepper-step.active .step-circle {
    background: var(--primary-gradient); color: #fff;
    box-shadow: 0 4px 14px rgba(11,93,75,.35); border-color: rgba(11,93,75,.15);
}
.stepper-step.completed .step-circle {
    background: var(--primary); color: #fff;
}
.step-label { font-size: 12px; font-weight: 600; color: var(--text-muted); white-space: nowrap; }
.stepper-step.active .step-label { color: var(--primary); }
.step-connector {
    flex: 1; height: 3px; background: var(--border);
    border-radius: 2px; min-width: 40px; margin: 0 8px; margin-bottom: 22px;
    transition: background var(--transition);
}
.step-connector.active { background: var(--primary-gradient); }

/* ======= FORM CARDS ======= */
.form-card {
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); overflow: hidden;
    transition: box-shadow var(--transition);
}
.form-card:hover { box-shadow: var(--shadow); }
.form-card-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 24px; border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(11,93,75,.03), rgba(15,118,110,.02));
}
.form-card-header h5 {
    margin: 0; font-size: 15px; display: flex; align-items: center;
    gap: 8px; color: var(--text);
}
.form-card-header h5 i { color: var(--primary); }
.form-card-badge {
    font-size: 11px; padding: 3px 10px; border-radius: 6px;
    background: #FEE2E2; color: #DC2626; font-weight: 600;
}
.form-card-badge.optional { background: var(--primary-soft); color: var(--primary); }
.form-card-body { padding: 24px; }

/* ======= FORM ELEMENTS ======= */
.form-label-custom {
    font-size: 13px; font-weight: 600; color: var(--text);
    margin-bottom: 6px; display: block;
}
.custom-input, .custom-select {
    border-radius: 10px; border: 1.5px solid var(--border);
    padding: 10px 14px; font-size: 13.5px; color: var(--text);
    transition: all var(--transition); background: #fff;
}
.custom-input:focus, .custom-select:focus {
    border-color: var(--primary); box-shadow: 0 0 0 3px rgba(11,93,75,.1);
    outline: none;
}
.custom-input::placeholder { color: #94A3B8; }

.input-icon-wrapper { position: relative; }
.input-icon {
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    color: var(--text-muted); font-size: 15px; z-index: 2;
}
.input-icon-wrapper .custom-input { padding-left: 40px; }

/* Password toggle */
.password-toggle {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    background: none; border: none; color: var(--text-muted); cursor: pointer;
    padding: 4px; font-size: 16px; z-index: 2; transition: color var(--transition);
}
.password-toggle:hover { color: var(--primary); }

/* Password strength */
.password-strength {
    height: 4px; border-radius: 2px; margin-top: 8px;
    background: var(--border); overflow: hidden; transition: all var(--transition);
}
.password-strength .strength-bar {
    height: 100%; border-radius: 2px; transition: width .4s ease, background .4s ease;
}

.form-helper {
    display: flex; align-items: center; gap: 6px;
    font-size: 11.5px; color: var(--text-muted); margin-top: 6px;
}
.form-helper i { font-size: 12px; }

/* Phone input */
.phone-input-wrapper { display: flex; gap: 0; }
.phone-prefix {
    display: flex; align-items: center; gap: 6px; padding: 0 14px;
    background: var(--bg); border: 1.5px solid var(--border);
    border-right: none; border-radius: 10px 0 0 10px; font-size: 13px;
    color: var(--text); font-weight: 500; white-space: nowrap;
}
.phone-input { border-radius: 0 10px 10px 0 !important; }

/* ======= ROLE TABS ======= */
.role-tabs { border-bottom: 1px solid var(--border); }
.role-tab-nav {
    border: none; padding: 0 24px; gap: 0;
}
.role-tab-nav .nav-link {
    border: none; border-bottom: 3px solid transparent;
    color: var(--text-muted); font-size: 13px; font-weight: 600;
    padding: 14px 18px; display: flex; align-items: center; gap: 6px;
    transition: all var(--transition); border-radius: 0;
    background: none;
}
.role-tab-nav .nav-link:hover { color: var(--primary); border-bottom-color: rgba(11,93,75,.2); }
.role-tab-nav .nav-link.active {
    color: var(--primary); border-bottom-color: var(--primary);
    background: none;
}

/* ======= CHARACTER COUNTER ======= */
.char-counter {
    text-align: right; font-size: 11.5px; color: var(--text-muted);
    margin-top: 4px; transition: color var(--transition);
}
.char-counter.warning { color: #D97706; }
.char-counter.danger { color: #DC2626; font-weight: 600; }

/* ======= WALI SECTION ======= */
.wali-entry {
    padding: 16px; background: var(--bg); border-radius: 12px;
    margin-bottom: 12px; border: 1px solid var(--border);
    animation: fadeIn .35s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.btn-remove-wali {
    background: #FEE2E2; color: #DC2626; border: none; border-radius: 10px;
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    transition: all var(--transition); cursor: pointer;
}
.btn-remove-wali:hover { background: #DC2626; color: #fff; }
.btn-remove-wali:disabled { opacity: .4; cursor: not-allowed; }

.btn-add-wali {
    background: var(--primary-soft); color: var(--primary); border: 1.5px dashed var(--primary);
    border-radius: 10px; padding: 10px 20px; font-size: 13px; font-weight: 600;
    display: flex; align-items: center; gap: 8px; transition: all var(--transition);
    cursor: pointer; width: 100%;  justify-content: center;
}
.btn-add-wali:hover { background: var(--primary); color: #fff; border-style: solid; }

/* ======= ACTION BUTTONS ======= */
.form-actions {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border);
}
.btn-cancel {
    background: var(--white); color: var(--text-muted); border: 1.5px solid var(--border);
    padding: 12px 28px; border-radius: 50px; font-size: 14px; font-weight: 600;
    display: flex; align-items: center; gap: 8px; text-decoration: none;
    transition: all var(--transition);
}
.btn-cancel:hover { background: #FEE2E2; color: #DC2626; border-color: #DC2626; }

.btn-submit {
    background: var(--primary-gradient); color: #fff; border: none;
    padding: 12px 32px; border-radius: 50px; font-size: 14px; font-weight: 600;
    display: flex; align-items: center; gap: 8px;
    transition: all var(--transition); box-shadow: 0 4px 14px rgba(11,93,75,.3);
    cursor: pointer;
}
.btn-submit:hover {
    transform: translateY(-2px); box-shadow: 0 6px 20px rgba(11,93,75,.4);
}
.btn-submit:active { transform: translateY(0); }
.btn-submit.loading { pointer-events: none; opacity: .7; }
.btn-submit .spinner-border { width: 16px; height: 16px; border-width: 2px; }

/* ======= VALIDATION ======= */
.was-validated .custom-input:invalid,
.was-validated .custom-select:invalid,
.custom-input.is-invalid, .custom-select.is-invalid {
    border-color: #DC2626;
}
.was-validated .custom-input:valid,
.was-validated .custom-select:valid,
.custom-input.is-valid, .custom-select.is-valid {
    border-color: #16A34A;
}
.invalid-feedback { font-size: 12px; }

/* ======= RESPONSIVE ======= */
@media (max-width: 991.98px) {
    .admin-sidebar { transform: translateX(-100%); }
    .admin-sidebar.show { transform: translateX(0); }
    .admin-main { margin-left: 0; }
    .main-content { padding: 20px 16px 32px; }
}

@media (max-width: 767.98px) {
    .topbar-search { display: none; }
    .stepper-wrapper { padding: 16px; }
    .form-card-body { padding: 16px; }
    .form-actions { flex-direction: column-reverse; gap: 12px; }
    .btn-cancel, .btn-submit { width: 100%; justify-content: center; }
    .page-title { font-size: 18px; }
    .notification-dropdown { width: 290px; }
}

@media (max-width: 575.98px) {
    .admin-topbar { padding: 0 14px; }
    .main-content { padding: 16px 12px 28px; }
    .phone-input-wrapper { flex-direction: column; gap: 8px; }
    .phone-prefix { border-radius: 10px; border-right: 1.5px solid var(--border); }
    .phone-input { border-radius: 10px !important; }
}

/* Focus animation */
.custom-input:focus, .custom-select:focus {
    animation: inputPulse .3s ease;
}
@keyframes inputPulse {
    0% { box-shadow: 0 0 0 0 rgba(11,93,75,.25); }
    100% { box-shadow: 0 0 0 3px rgba(11,93,75,.1); }
}

/* Glassy subtle effect on cards */
.form-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.8), transparent);
    pointer-events: none;
}
.form-card { position: relative; }

/* ======= BRAND BUTTONS (rectangle #0F6454) ======= */
.btn.btn-primary-custom,
.btn-primary-custom {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--btn-brand);
    --bs-btn-border-color: var(--btn-brand);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--btn-brand-hover);
    --bs-btn-hover-border-color: var(--btn-brand-hover);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--btn-brand-active);
    --bs-btn-active-border-color: var(--btn-brand-active);
    --bs-btn-focus-shadow-rgb: 15, 100, 84;
    --bs-btn-border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    background-color: var(--btn-brand);
    border: 1px solid var(--btn-brand);
    color: #fff !important;
    border-radius: 4px;
    font-weight: 600;
    padding: .5rem 1rem;
    line-height: 1.25;
    text-decoration: none;
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.btn.btn-primary-custom:hover,
.btn.btn-primary-custom:focus,
.btn-primary-custom:hover,
.btn-primary-custom:focus {
    background-color: var(--btn-brand-hover);
    border-color: var(--btn-brand-hover);
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(15, 100, 84, .25);
}

.btn.btn-primary-custom:active,
.btn-primary-custom:active {
    background-color: var(--btn-brand-active);
    border-color: var(--btn-brand-active);
    color: #fff !important;
}

.btn.btn-primary-custom.btn-sm,
.btn-primary-custom.btn-sm {
    padding: .375rem .75rem;
    font-size: .875rem;
}

.btn.btn-primary-custom:disabled,
.btn.btn-primary-custom.disabled,
.btn-primary-custom:disabled,
.btn-primary-custom.disabled {
    opacity: .65;
    pointer-events: none;
}

/* ======= PAGINATION (brand) ======= */
.pagination-brand .pagination {
    gap: .35rem;
    margin-bottom: 0;
}

.pagination-brand .page-item .page-link {
    border-radius: 4px;
    color: var(--btn-brand);
    border: 1px solid var(--border);
    padding: .4rem .75rem;
    font-weight: 500;
}

.pagination-brand .page-item.active .page-link {
    background-color: var(--btn-brand);
    border-color: var(--btn-brand);
    color: #fff;
}

.pagination-brand .page-item .page-link:hover {
    background-color: rgba(15, 100, 84, .08);
    color: var(--btn-brand);
    border-color: var(--btn-brand);
}

.pagination-brand .page-item.disabled .page-link {
    color: var(--text-muted);
    border-color: var(--border);
    background: #fff;
}
