@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --navy-950: #07152f;
    --navy-900: #0b1f46;
    --navy-800: #0e2b5c;
    --navy-700: #123a78;
    --blue-500: #2563eb;
    --cyan-400: #22d3ee;
    --sky-100: #e0f2fe;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-500: #64748b;
    --slate-700: #334155;
    --white: #ffffff;
    --danger: #ef4444;
    --success: #10b981;
    --warning: #f59e0b;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --shadow-soft: 0 20px 60px rgba(7, 21, 47, 0.16);
    --shadow-card: 0 12px 28px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 13.5px;
    color: var(--slate-700);
    background: var(--slate-50);
}

a {
    text-decoration: none;
}

.login-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.28), transparent 34%),
        radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.18), transparent 30%),
        linear-gradient(135deg, #07152f 0%, #0b1f46 45%, #0e2b5c 100%);
}

.login-page {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
}

.login-shell {
    width: 100%;
    max-width: 1040px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    align-items: stretch;
}

.login-brand-panel {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 34px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.05)),
        rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: var(--shadow-soft);
    color: #fff;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.login-brand-panel::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    right: -80px;
    top: -80px;
    background: rgba(34, 211, 238, 0.22);
    filter: blur(2px);
}

.login-brand-panel::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    left: -60px;
    bottom: -60px;
    background: rgba(37, 99, 235, 0.28);
}

.brand-badge {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--cyan-400), var(--blue-500));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 16px 40px rgba(34, 211, 238, 0.28);
    position: relative;
    z-index: 2;
}

.brand-kicker {
    margin-top: 26px;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.72);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.login-brand-panel h1 {
    font-size: 36px;
    line-height: 1.12;
    font-weight: 800;
    margin: 0 0 14px;
    letter-spacing: -0.04em;
    position: relative;
    z-index: 2;
}

.login-brand-panel p {
    max-width: 470px;
    color: rgba(255,255,255,0.74);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 2;
}

.feature-list {
    display: grid;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.13);
    color: rgba(255,255,255,0.86);
    font-size: 13px;
    backdrop-filter: blur(10px);
}

.feature-item i {
    width: 30px;
    height: 30px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 211, 238, 0.16);
    color: #a5f3fc;
}

.login-card {
    border-radius: 28px;
    padding: 34px;
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow-soft);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.small-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue-500);
    margin-bottom: 7px;
}

.login-card h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy-950);
    margin: 0;
    letter-spacing: -0.04em;
}

.login-icon {
    width: 48px;
    height: 48px;
    border-radius: 17px;
    background: var(--sky-100);
    color: var(--navy-800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.custom-input {
    min-height: 52px;
    border-radius: 16px;
    border: 1px solid var(--slate-200);
    font-size: 13.5px;
    color: var(--navy-950);
    box-shadow: none !important;
}

.custom-input:focus {
    border-color: rgba(37, 99, 235, 0.55);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.09) !important;
}

.form-floating > label {
    font-size: 13px;
    color: var(--slate-500);
}

.password-wrap {
    position: relative;
}

.password-wrap .custom-input {
    padding-right: 52px;
}

.btn-password-toggle {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 5;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 12px;
    background: var(--slate-100);
    color: var(--slate-500);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-password-toggle:hover {
    background: var(--sky-100);
    color: var(--navy-800);
}

.btn-primary-premium {
    min-height: 50px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--navy-800), var(--blue-500));
    color: #fff;
    font-size: 13.5px;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.25);
}

.btn-primary-premium:hover,
.btn-primary-premium:focus {
    color: #fff;
    background: linear-gradient(135deg, var(--navy-900), var(--blue-500));
    transform: translateY(-1px);
}

.small-alert {
    border-radius: 15px;
    font-size: 13px;
    padding: 11px 14px;
    border: 0;
}

.login-footer-text {
    text-align: center;
    color: var(--slate-500);
    font-size: 12.5px;
    margin-top: 20px;
}

@media (max-width: 900px) {
    .login-shell {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .login-brand-panel {
        min-height: auto;
        padding: 26px;
    }

    .login-brand-panel h1 {
        font-size: 27px;
    }

    .feature-list {
        margin-top: 24px;
    }

    .login-card {
        min-height: auto;
        padding: 26px;
    }
}

@media (max-width: 480px) {
    .login-page {
        padding: 14px;
        align-items: flex-start;
    }

    .login-shell {
        gap: 14px;
    }

    .login-brand-panel {
        border-radius: 22px;
        padding: 22px;
    }

    .login-card {
        border-radius: 22px;
        padding: 22px;
    }

    .login-brand-panel h1 {
        font-size: 24px;
    }

    .login-brand-panel p {
        font-size: 13px;
    }

    .feature-item {
        font-size: 12.5px;
    }

    .login-card h2 {
        font-size: 24px;
    }
}

.app-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 28%),
        linear-gradient(180deg, #f8fafc 0%, #eef5ff 100%);
}

.app-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.app-navbar {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: rgba(7, 21, 47, 0.94);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
}

.navbar-inner {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    min-height: 68px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.navbar-brand-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    min-width: 220px;
}

.navbar-brand-custom:hover {
    color: #fff;
}

.brand-logo-small {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--cyan-400), var(--blue-500));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 21px;
    box-shadow: 0 12px 26px rgba(34, 211, 238, 0.25);
    flex: 0 0 auto;
}

.brand-title {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
}

.brand-subtitle {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.62);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.nav-link-custom {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 12px;
    border-radius: 13px;
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    font-weight: 700;
    transition: 0.2s ease;
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: #fff;
    background: rgba(255,255,255,0.10);
}

.nav-link-custom i {
    font-size: 15px;
}

.navbar-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e0f2fe, #ffffff);
    color: var(--navy-900);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex: 0 0 auto;
}

.user-info {
    line-height: 1.2;
}

.user-name {
    color: #fff;
    font-size: 12.5px;
    font-weight: 800;
    max-width: 140px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-role {
    color: rgba(255,255,255,0.56);
    font-size: 11px;
    font-weight: 600;
}

.btn-logout {
    width: 36px;
    height: 36px;
    border-radius: 13px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.78);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-logout:hover {
    background: rgba(239, 68, 68, 0.18);
    color: #fff;
}

.mobile-menu-btn {
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.10);
    color: #fff;
    font-size: 22px;
}

.mobile-offcanvas {
    background: var(--navy-950);
    color: #fff;
}

.mobile-user-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 18px;
}

.mobile-nav-list {
    display: grid;
    gap: 10px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
    color: rgba(255,255,255,0.82);
    background: rgba(255,255,255,0.06);
    font-weight: 700;
    font-size: 13.5px;
}

.mobile-nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.12);
}

.mobile-nav-link.logout {
    background: rgba(239, 68, 68, 0.15);
}

.app-main {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 28px 22px 34px;
    flex: 1;
}

.app-footer {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 20px 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--slate-500);
    font-size: 12px;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 22px;
}

.page-kicker {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--blue-500);
    margin-bottom: 6px;
}

.page-header h1 {
    margin: 0;
    font-size: 30px;
    font-weight: 850;
    letter-spacing: -0.045em;
    color: var(--navy-950);
}

.page-header p {
    margin: 8px 0 0;
    max-width: 620px;
    color: var(--slate-500);
    font-size: 13.5px;
    line-height: 1.6;
}

.page-header-action {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-sm-main {
    min-height: 42px;
    padding-left: 16px;
    padding-right: 16px;
}

.btn-outline-premium {
    min-height: 42px;
    border-radius: 15px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255,255,255,0.72);
    color: var(--navy-800);
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.btn-outline-premium:hover {
    background: #fff;
    border-color: rgba(37, 99, 235, 0.28);
    color: var(--blue-500);
}

.btn-light-premium {
    min-height: 48px;
    border-radius: 16px;
    border: 0;
    background: #fff;
    color: var(--navy-900);
    font-weight: 850;
    font-size: 13.5px;
    padding-left: 18px;
    padding-right: 18px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.15);
}

.btn-light-premium:hover {
    background: #eef8ff;
    color: var(--navy-900);
}

.btn-ghost-light {
    min-height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-weight: 800;
    font-size: 13.5px;
    padding-left: 18px;
    padding-right: 18px;
}

.btn-ghost-light:hover {
    background: rgba(255,255,255,0.16);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.stat-card {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-height: 126px;
}

.stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex: 0 0 auto;
}

.stat-icon.blue {
    background: rgba(37, 99, 235, 0.12);
    color: var(--blue-500);
}

.stat-icon.success {
    background: rgba(16, 185, 129, 0.13);
    color: var(--success);
}

.stat-icon.cyan {
    background: rgba(34, 211, 238, 0.16);
    color: #0891b2;
}

.stat-icon.warning {
    background: rgba(245, 158, 11, 0.14);
    color: var(--warning);
}

.stat-label {
    font-size: 12px;
    font-weight: 800;
    color: var(--slate-500);
    margin-bottom: 4px;
}

.stat-value {
    font-size: 28px;
    font-weight: 850;
    letter-spacing: -0.04em;
    color: var(--navy-950);
    line-height: 1.1;
}

.stat-desc {
    color: var(--slate-500);
    font-size: 12px;
    margin-top: 7px;
    line-height: 1.4;
}

.content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
}

.premium-card {
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 24px;
    padding: 22px;
    box-shadow: var(--shadow-card);
}

.card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.card-head h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 850;
    letter-spacing: -0.035em;
    color: var(--navy-950);
}

.card-head p {
    margin: 6px 0 0;
    font-size: 12.5px;
    color: var(--slate-500);
    line-height: 1.5;
}

.progress-percent {
    min-width: 68px;
    height: 42px;
    border-radius: 15px;
    background: var(--sky-100);
    color: var(--navy-800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 850;
}

.progress-premium {
    height: 13px;
    border-radius: 999px;
    background: var(--slate-100);
    overflow: hidden;
}

.progress-premium .progress-bar {
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue-500), var(--cyan-400));
}

.progress-info {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--slate-500);
    font-size: 12.5px;
    margin-top: 12px;
}

.quick-action-list {
    display: grid;
    gap: 11px;
}

.quick-action {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 17px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    color: var(--navy-800);
    font-size: 13px;
    font-weight: 800;
}

.quick-action:hover {
    background: var(--sky-100);
    border-color: rgba(37, 99, 235, 0.22);
    color: var(--blue-500);
}

.quick-action i {
    width: 34px;
    height: 34px;
    border-radius: 13px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-premium {
    margin-bottom: 0;
    font-size: 13px;
}

.table-premium thead th {
    background: var(--slate-50);
    color: var(--slate-500);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 850;
    border-bottom: 1px solid var(--slate-200);
    padding: 13px 14px;
}

.table-premium tbody td {
    padding: 14px;
    color: var(--slate-700);
    border-bottom: 1px solid var(--slate-100);
    vertical-align: middle;
}

.table-premium tbody tr:hover td {
    background: rgba(224, 242, 254, 0.35);
}

.table-title {
    color: var(--navy-950);
    font-weight: 850;
}

.badge-soft {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 850;
    white-space: nowrap;
}

.badge-soft.blue {
    background: rgba(37, 99, 235, 0.10);
    color: var(--blue-500);
}

.badge-soft.success {
    background: rgba(16, 185, 129, 0.12);
    color: var(--success);
}

.badge-soft.muted {
    background: var(--slate-100);
    color: var(--slate-500);
}

.petugas-hero {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.28), transparent 28%),
        linear-gradient(135deg, var(--navy-950), var(--navy-800));
    padding: 30px;
    color: #fff;
    margin-bottom: 18px;
    box-shadow: var(--shadow-soft);
}

.petugas-hero::before {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.24);
}

.petugas-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.petugas-hero .page-kicker {
    color: #a5f3fc;
}

.petugas-hero h1 {
    margin: 0;
    font-size: 31px;
    font-weight: 850;
    letter-spacing: -0.045em;
}

.petugas-hero p {
    margin: 12px 0 0;
    max-width: 620px;
    color: rgba(255,255,255,0.74);
    line-height: 1.7;
    font-size: 13.5px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.petugas-hero-badge {
    position: absolute;
    right: 28px;
    top: 28px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,0.11);
    border: 1px solid rgba(255,255,255,0.16);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.guide-list {
    display: grid;
    gap: 13px;
}

.guide-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px;
    border-radius: 17px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
}

.guide-icon {
    width: 36px;
    height: 36px;
    border-radius: 14px;
    background: var(--sky-100);
    color: var(--navy-800);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.guide-item strong {
    display: block;
    color: var(--navy-950);
    font-size: 13px;
    margin-bottom: 3px;
}

.guide-item span {
    display: block;
    color: var(--slate-500);
    font-size: 12px;
    line-height: 1.4;
}

@media (max-width: 1020px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .navbar-brand-custom {
        min-width: auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .navbar-inner {
        min-height: 62px;
        padding: 0 14px;
    }

    .brand-title {
        font-size: 13px;
    }

    .brand-subtitle {
        font-size: 10.5px;
    }

    .app-main {
        padding: 18px 14px 28px;
    }

    .app-footer {
        padding: 18px 14px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .page-header {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 16px;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .page-header-action {
        width: 100%;
    }

    .page-header-action .btn {
        flex: 1;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-card {
        border-radius: 20px;
        min-height: auto;
        padding: 16px;
    }

    .stat-value {
        font-size: 25px;
    }

    .premium-card {
        border-radius: 21px;
        padding: 18px;
    }

    .card-head {
        flex-direction: column;
        gap: 10px;
    }

    .progress-percent {
        width: 100%;
    }

    .progress-info {
        flex-direction: column;
        gap: 4px;
    }

    .petugas-hero {
        border-radius: 22px;
        padding: 22px;
        min-height: auto;
    }

    .petugas-hero h1 {
        font-size: 25px;
    }

    .petugas-hero-badge {
        position: relative;
        right: auto;
        top: auto;
        margin-top: 18px;
        width: fit-content;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .table-premium {
        min-width: 760px;
    }
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-grid-full {
    grid-column: 1 / -1;
}

.custom-textarea {
    min-height: 92px !important;
    resize: vertical;
}

.custom-textarea-lg {
    min-height: 128px !important;
    resize: vertical;
}

.input-search-box {
    display: flex;
    align-items: stretch;
    gap: 12px;
}

.btn-search-pelanggan {
    min-width: 120px;
}

.conditional-section {
    padding: 16px;
    border-radius: 18px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 13px;
    padding: 8px 11px;
    border-radius: 999px;
    background: #fff;
    color: var(--navy-800);
    font-size: 12px;
    font-weight: 850;
    border: 1px solid var(--slate-200);
}

.location-box {
    display: grid;
    gap: 10px;
}

.location-status {
    padding: 12px 14px;
    border-radius: 16px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    font-size: 12.5px;
    color: var(--slate-500);
}

.photo-upload {
    display: grid;
    gap: 12px;
}

.photo-upload-label {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
    border: 1.5px dashed rgba(37, 99, 235, 0.35);
    background: rgba(224, 242, 254, 0.35);
    cursor: pointer;
    transition: 0.2s ease;
}

.photo-upload-label:hover {
    background: rgba(224, 242, 254, 0.65);
    border-color: rgba(37, 99, 235, 0.55);
}

.photo-upload-icon {
    width: 48px;
    height: 48px;
    border-radius: 17px;
    background: linear-gradient(135deg, var(--navy-800), var(--blue-500));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex: 0 0 auto;
}

.photo-upload-label strong {
    display: block;
    color: var(--navy-950);
    font-size: 13.5px;
    margin-bottom: 3px;
}

.photo-upload-label span {
    display: block;
    color: var(--slate-500);
    font-size: 12px;
    line-height: 1.4;
}

.foto-preview-wrap {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--slate-200);
    background: var(--slate-100);
}

.foto-preview-wrap img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    display: block;
}

.submit-sticky {
    position: sticky;
    bottom: 0;
    z-index: 50;
    padding: 14px 0;
    background: linear-gradient(180deg, rgba(248,250,252,0), rgba(248,250,252,0.98) 34%);
}

.submit-sticky .btn {
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.28);
}

@media (max-width: 700px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .input-search-box {
        flex-direction: column;
    }

    .btn-search-pelanggan {
        width: 100%;
        min-height: 48px;
    }

    .photo-upload-label {
        align-items: flex-start;
    }

    .foto-preview-wrap img {
        max-height: 280px;
    }
}

.filter-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 0.7fr;
    gap: 14px;
    align-items: stretch;
}

.filter-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.empty-state {
    padding: 44px 20px;
    text-align: center;
}

.empty-icon {
    width: 72px;
    height: 72px;
    border-radius: 26px;
    background: var(--sky-100);
    color: var(--navy-800);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 34px;
}

.empty-state h3 {
    margin: 0;
    color: var(--navy-950);
    font-size: 19px;
    font-weight: 850;
    letter-spacing: -0.03em;
}

.empty-state p {
    margin: 8px auto 18px;
    color: var(--slate-500);
    font-size: 13px;
}

.riwayat-list {
    display: grid;
    gap: 14px;
}

.riwayat-card {
    display: grid;
    grid-template-columns: 148px 1fr;
    gap: 16px;
    padding: 14px;
    border-radius: 22px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    transition: 0.2s ease;
}

.riwayat-card:hover {
    background: #fff;
    border-color: rgba(37, 99, 235, 0.24);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.riwayat-photo {
    width: 100%;
    height: 132px;
    border-radius: 18px;
    overflow: hidden;
    background: var(--slate-100);
}

.riwayat-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



.no-photo {
    width: 100%;
    height: 100%;
    color: var(--slate-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.riwayat-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}

.riwayat-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.riwayat-id {
    display: inline-flex;
    align-items: center;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.10);
    color: var(--blue-500);
    font-size: 11.5px;
    font-weight: 850;
    margin-bottom: 7px;
}

.riwayat-top h3 {
    margin: 0;
    color: var(--navy-950);
    font-size: 17px;
    font-weight: 850;
    letter-spacing: -0.035em;
}

.riwayat-meta {
    display: grid;
    gap: 6px;
    color: var(--slate-500);
    font-size: 12.5px;
}

.riwayat-meta div {
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.riwayat-meta i {
    color: var(--blue-500);
    margin-top: 1px;
}

.riwayat-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pagination-btn {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 13px;
    border: 1px solid var(--slate-200);
    background: #fff;
    color: var(--navy-800);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 850;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: linear-gradient(135deg, var(--navy-800), var(--blue-500));
    color: #fff;
    border-color: transparent;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 18px;
    align-items: start;
}

.detail-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.detail-label {
    font-size: 12px;
    font-weight: 850;
    color: var(--blue-500);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-bottom: 5px;
}

.detail-title-row h2 {
    margin: 0;
    color: var(--navy-950);
    font-size: 28px;
    font-weight: 850;
    letter-spacing: -0.045em;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.detail-item {
    padding: 14px;
    border-radius: 17px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
}

.detail-item span {
    display: block;
    color: var(--slate-500);
    font-size: 11.5px;
    font-weight: 750;
    margin-bottom: 6px;
}

.detail-item strong {
    display: block;
    color: var(--navy-950);
    font-size: 13.5px;
    line-height: 1.5;
}

.detail-full {
    grid-column: 1 / -1;
}

.note-box {
    padding: 16px;
    border-radius: 18px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    color: var(--slate-700);
    font-size: 13px;
    line-height: 1.7;
}

.detail-photo {
    display: block;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--slate-200);
    background: var(--slate-100);
}

.detail-photo img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.empty-photo {
    min-height: 220px;
    border-radius: 20px;
    background: var(--slate-50);
    border: 1px dashed var(--slate-200);
    color: var(--slate-500);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.empty-photo i {
    font-size: 34px;
}

.coordinate-list {
    display: grid;
    gap: 10px;
}

.coordinate-item {
    padding: 13px;
    border-radius: 16px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
}

.coordinate-item span {
    display: block;
    color: var(--slate-500);
    font-size: 11.5px;
    font-weight: 750;
    margin-bottom: 5px;
}

.coordinate-item strong {
    color: var(--navy-950);
    font-size: 13px;
    word-break: break-all;
}

.petugas-detail-card {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px;
    border-radius: 18px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
}

.detail-avatar {
    background: linear-gradient(135deg, var(--navy-800), var(--blue-500));
    color: #fff;
}

.petugas-detail-card strong {
    display: block;
    color: var(--navy-950);
    font-size: 13.5px;
    margin-bottom: 4px;
}

.petugas-detail-card span {
    display: block;
    color: var(--slate-500);
    font-size: 12px;
    line-height: 1.5;
}

@media (max-width: 1020px) {
    .filter-grid {
        grid-template-columns: 1fr 1fr;
    }

    .filter-actions {
        grid-column: 1 / -1;
        grid-template-columns: 1fr 1fr;
    }

    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-side {
        order: -1;
    }
}

@media (max-width: 700px) {
    .filter-grid {
        grid-template-columns: 1fr;
    }

    .filter-actions {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .riwayat-card {
        grid-template-columns: 1fr;
    }

    .riwayat-photo {
        height: 210px;
    }

    .riwayat-top {
        flex-direction: column;
    }

    .riwayat-actions .btn {
        flex: 1;
    }

    .detail-title-row {
        flex-direction: column;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }

    .detail-full {
        grid-column: auto;
    }
}

.admin-filter-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 14px;
    align-items: stretch;
}

.admin-filter-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.table-address {
    max-width: 340px;
    white-space: normal;
    line-height: 1.45;
}

.table-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.btn-action {
    width: 36px;
    height: 36px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--slate-200);
    background: #fff;
    font-size: 15px;
    transition: 0.2s ease;
}

.btn-action.edit {
    color: var(--blue-500);
}

.btn-action.edit:hover {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--navy-800), var(--blue-500));
}

.btn-action.delete {
    color: var(--danger);
}

.btn-action.delete:hover {
    color: #fff;
    border-color: transparent;
    background: var(--danger);
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.form-actions .btn {
    min-width: 150px;
}

@media (max-width: 760px) {
    .admin-filter-grid {
        grid-template-columns: 1fr;
    }

    .admin-filter-actions {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .form-actions .btn {
        width: 100%;
    }
}

.petugas-filter-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px 240px;
    gap: 14px;
    align-items: stretch;
}

.petugas-mini {
    display: flex;
    align-items: center;
    gap: 11px;
}

.table-avatar {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--navy-800), var(--blue-500));
    color: #fff;
    font-size: 14px;
}

.single-grid {
    grid-template-columns: 1fr;
}

.info-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 14px;
    border-radius: 16px;
    background: rgba(224, 242, 254, 0.45);
    border: 1px solid rgba(37, 99, 235, 0.16);
    color: var(--slate-600, #475569);
    font-size: 12.5px;
    line-height: 1.5;
}

.info-note i {
    color: var(--blue-500);
    margin-top: 1px;
}

@media (max-width: 940px) {
    .petugas-filter-grid {
        grid-template-columns: 1fr;
    }
}

.monitor-filter-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 14px;
    align-items: stretch;
}

.diagram-filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 240px;
    gap: 14px;
    align-items: stretch;
}

.rank-badge {
    width: 34px;
    height: 34px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    border: 1px solid var(--slate-200);
    background: #fff;
    color: var(--navy-800);
}

.rank-gold {
    background: linear-gradient(135deg, #facc15, #f59e0b);
    border-color: transparent;
    color: #fff;
}

.rank-silver {
    background: linear-gradient(135deg, #cbd5e1, #94a3b8);
    border-color: transparent;
    color: #fff;
}

.rank-bronze {
    background: linear-gradient(135deg, #fb923c, #c2410c);
    border-color: transparent;
    color: #fff;
}

.rank-normal {
    background: var(--slate-100);
    color: var(--slate-600, #475569);
}

.mini-progress-wrap {
    display: grid;
    gap: 6px;
}

.mini-progress-text {
    display: flex;
    justify-content: flex-end;
    color: var(--navy-800);
    font-size: 11.5px;
    font-weight: 850;
}

.mini-progress {
    height: 9px;
    border-radius: 999px;
    background: var(--slate-100);
}

.mini-progress .progress-bar {
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue-500), var(--cyan-400));
}

.stat-date {
    font-size: 23px !important;
}

.chart-box {
    position: relative;
    height: 320px;
    width: 100%;
}

.chart-box-wide {
    height: 380px;
}

@media (max-width: 900px) {
    .monitor-filter-grid,
    .diagram-filter-grid {
        grid-template-columns: 1fr;
    }

    .chart-box {
        height: 280px;
    }

    .chart-box-wide {
        height: 360px;
    }
}

@media (max-width: 560px) {
    .chart-box {
        height: 260px;
    }

    .chart-box-wide {
        height: 340px;
    }
}

.report-filter-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.75fr 0.75fr 0.9fr 0.9fr 240px;
    gap: 14px;
    align-items: stretch;
}

.report-filter-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.report-table {
    min-width: 1250px;
}

@media (max-width: 1180px) {
    .report-filter-grid {
        grid-template-columns: 1fr 1fr;
    }

    .report-filter-actions {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .report-filter-grid {
        grid-template-columns: 1fr;
    }

    .report-filter-actions {
        grid-column: auto;
        grid-template-columns: 1fr;
    }
}

.diagram-filter-mode {
    grid-template-columns: 220px 1fr 1fr 240px;
}

@media (max-width: 980px) {
    .diagram-filter-mode {
        grid-template-columns: 1fr;
    }
}

.pelanggan-filter-grid {
    grid-template-columns: minmax(0, 1fr) 240px 240px;
}

@media (max-width: 900px) {
    .pelanggan-filter-grid {
        grid-template-columns: 1fr;
    }
}

.quick-action-static {
    cursor: default;
    justify-content: space-between;
}

.quick-action-static:hover {
    background: var(--slate-50);
    color: var(--navy-800);
    border-color: var(--slate-200);
}

.quick-action-static strong {
    color: var(--navy-950);
    font-size: 14px;
    font-weight: 900;
}

.empty-inline {
    padding: 18px;
    border-radius: 16px;
    background: var(--slate-50);
    border: 1px dashed var(--slate-200);
    color: var(--slate-500);
    font-size: 13px;
    text-align: center;
}

.today-summary {
    text-align: center;
    padding: 20px 10px 6px;
}

.today-number {
    font-size: 48px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.06em;
    color: var(--navy-950);
}

.today-label {
    margin-top: 8px;
    color: var(--slate-500);
    font-size: 13px;
    font-weight: 700;
}

.text-danger.fw-bold {
    color: #dc2626 !important;
    font-weight: 800 !important;
}

.mapping-warning {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 6px;
    padding: 4px 8px;
    border-radius: 999px;
    background: #fee2e2;
    color: #991b1b;
    font-size: 11px;
    font-weight: 800;
}

.report-mismatch-row {
    background: linear-gradient(90deg, rgba(254, 226, 226, 0.42), transparent);
}

.mapping-warning {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #fee2e2;
    color: #991b1b;
    font-size: 11px;
    font-weight: 800;
}

.mapping-warning i {
    font-size: 12px;
}

.detail-side .badge-soft.mt-2 {
    margin-top: 8px !important;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

.detail-main,
.detail-side {
    min-width: 0;
}

.detail-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.detail-label {
    font-size: 12px;
    color: var(--slate-500);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.detail-title-row h2 {
    margin: 0;
    color: var(--navy-950);
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.detail-item {
    padding: 14px;
    border-radius: 16px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
}

.detail-item span {
    display: block;
    color: var(--slate-500);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 5px;
}

.detail-item strong {
    color: var(--navy-950);
    font-size: 14px;
    font-weight: 900;
}

.detail-full {
    grid-column: 1 / -1;
}

.note-box {
    min-height: 90px;
    padding: 16px;
    border-radius: 16px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    color: var(--slate-700);
    font-size: 14px;
    line-height: 1.7;
}

.detail-photo {
    display: block;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--slate-200);
    background: var(--slate-50);
}

.detail-photo img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.empty-photo {
    min-height: 220px;
    border-radius: 20px;
    background: var(--slate-50);
    border: 1px dashed var(--slate-200);
    color: var(--slate-500);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.empty-photo i {
    font-size: 34px;
}

.coordinate-list {
    display: grid;
    gap: 10px;
}

.coordinate-item {
    padding: 12px 14px;
    border-radius: 16px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
}

.coordinate-item span {
    display: block;
    color: var(--slate-500);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
}

.coordinate-item strong {
    color: var(--navy-950);
    font-size: 14px;
    font-weight: 900;
    word-break: break-word;
}

.petugas-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    border-radius: 18px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
}

.detail-avatar {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
}

.petugas-detail-card strong {
    display: block;
    color: var(--navy-950);
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 4px;
}

.petugas-detail-card span {
    display: block;
    color: var(--slate-500);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 2px;
}

@media (max-width: 1080px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .detail-title-row {
        flex-direction: column;
    }

    .detail-title-row h2 {
        font-size: 24px;
    }

    .detail-photo img {
        height: 220px;
    }
}

.report-table-compact th,
.report-table-compact td {
    white-space: normal;
}

.report-date-cell {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.25;
}

.report-date-cell strong {
    color: var(--navy-950);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.report-date-cell span {
    color: var(--slate-500);
    font-size: 12px;
    font-weight: 800;
}

.report-detail-btn {
    padding-left: 14px;
    padding-right: 14px;
    white-space: nowrap;
}

.report-table-wrap {
    width: 100%;
    overflow-x: visible;
}

.report-table-compact {
    width: 100%;
    table-layout: fixed;
    min-width: 0;
}

.report-table-compact th,
.report-table-compact td {
    white-space: normal;
    vertical-align: middle;
}

.report-table-compact .table-title {
    line-height: 1.35;
    word-break: break-word;
}

.report-table-compact small {
    line-height: 1.35;
    word-break: break-word;
}

.report-date-cell {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.2;
}

.report-date-cell strong {
    color: var(--navy-950);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.report-date-cell span {
    color: var(--slate-500);
    font-size: 12px;
    font-weight: 800;
}

.report-detail-btn {
    padding: 8px 10px;
    min-width: 78px;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .report-table-wrap {
        overflow-x: auto;
    }

    .report-table-compact {
        min-width: 760px;
    }
}

.foto-preview-wrap {
    width: 100% !important;
    max-width: 420px !important;
    margin: 18px auto 0 !important;
    border-radius: 24px !important;
    overflow: hidden !important;
}

.foto-preview-wrap img {
    width: 100% !important;
    aspect-ratio: 3 / 4 !important;
    height: auto !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}

.search-result-box {
    border: 1px solid #dbeafe;
    background: #f8fbff;
    border-radius: 18px;
    padding: 14px;
}

.search-result-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--navy-950);
    margin-bottom: 12px;
}

.search-result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    margin-bottom: 10px;
}

.search-result-item:last-child {
    margin-bottom: 0;
}

.search-result-item strong {
    display: block;
    color: var(--primary-700);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 2px;
}

.search-result-item span {
    display: block;
    color: var(--navy-950);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 2px;
}

.search-result-item small {
    display: block;
    color: var(--slate-500);
    font-size: 12px;
    line-height: 1.4;
}

@media (max-width: 576px) {
    .search-result-item {
        align-items: stretch;
        flex-direction: column;
    }

    .search-result-item .btn {
        width: 100%;
    }
}