﻿/* =====================================================
   IAM DESIGN SYSTEM – SINGLE SOURCE
   V1.0
===================================================== */

/* ===============================
   DESIGN TOKENS
================================ */
:root {
    --iam-bg-app: #f5f7fa;
    --iam-bg-card: #ffffff;
    --iam-bg-soft: #f8fafc;
    --iam-border: #e5e7eb;
    --iam-border-strong: #cbd5e1;
    --iam-primary: #2563eb;
    --iam-danger: #b91c1c;
    --iam-text: #0f172a;
    --iam-muted: #64748b;
    --iam-radius: 14px;
    --iam-radius-sm: 10px;
    --iam-shadow-sm: 0 4px 12px rgba(15,23,42,.06);
    --iam-shadow-md: 0 8px 22px rgba(15,23,42,.10);
}

/* ===============================
   GLOBAL BASE
================================ */
html, body {
    font-family: 'Inter','Segoe UI',Arial,sans-serif;
    background: var(--iam-bg-app);
    color: var(--iam-text);
}

.warning-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 18px;
    margin: 12px 0;
    border-left: 5px solid #f0ad4e;
    background-color: #fff8e6;
    color: #6b4f1d;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    font-size: 14px;
}

.warning-title {
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
}

    .warning-title::before {
        content: "⚠️";
        margin-right: 8px;
    }

.warning-content {
    font-size: 13.5px;
    line-height: 1.5;
}

/* =====================================================
   GLOBAL CARD (DASHBOARD • EMPLOYEE • FORM)
===================================================== */
.rz-card,
.iam-card,
.employee-card,
.employee-fieldset {
    background: var(--iam-card);
    border-radius: 10px;
    border: 1px solid var(--iam-border);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    transition: all .25s ease;
}

    .rz-card:hover,
    .iam-card:hover,
    .employee-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--iam-shadow-md);
    }

/* ===============================
   EMPLOYEE – BADGE
================================ */
.employee-badge {
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
}

.employee-badge-active {
    background: #dcfce7;
    color: #166534;
}

.employee-badge-resign {
    background: #fee2e2;
    color: #991b1b;
}
.employee-nik-resign {
    color: #dc2626;
    font-weight: 600;
}

.employee-nik-active {
    color: #0f172a;
    font-weight: 500;
}


/* =====================================
   TABS
===================================== */
.form-tabs {
    margin-top: 20px;
    min-height: 500px;
}

    /* Tab header */
    .form-tabs .rz-tabview-nav {
        border-bottom: 2px solid #e5e7eb;
    }

        .form-tabs .rz-tabview-nav li {
            font-weight: 600;
            font-size: 14px;
            color: #64748b;
            padding: 12px 18px;
        }

            .form-tabs .rz-tabview-nav li.rz-state-active {
                color: #0f172a;
                border-bottom: 3px solid #2563eb;
            }

/* =====================================================
   CARD VARIANTS
===================================================== */

.card-flat {
    box-shadow: none;
}

.card-soft {
    background: var(--iam-bg-soft);
}

.card-bordered {
    border-color: var(--iam-border-strong);
}

/* =====================================================
   KPI CARD
===================================================== */
.iam-kpi {
    height: 88px !important;
    padding: 0.5rem 0.75rem !important;
}

.iam-kpi-title {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--iam-muted);
}

.iam-kpi-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--iam-primary);
    margin-top: -6px;
}

.iam-kpi-icon {
    height: 36px;
    border-radius: 6px;
    padding: 4px;
    background: #eef4fb;
    border: 1px solid #c7dbf3;
}
.iam-kpi-green {
    background: #fef2f2;
    border-left: 5px solid #99FAB0;
    opacity: .85;
}

.iam-kpi-red {
    background: #fef2f2;
    border-left: 5px solid #E4080A;
    opacity: .85;
}

.iam-kpi-netral {
    background: #fef2f2;
    border-left: 5px solid #2273F4;
    opacity: .85;
}

/* =====================================================
   EMPLOYEE CARD
===================================================== */
.employee-card {
    padding: 14px 16px;
}

    .employee-card.employee-aktif {
        border-left: 5px solid var(--iam-primary);
    }

    .employee-card.resign {
        background: #fef2f2;
        border-left: 5px solid var(--iam-danger);
        opacity: .85;
    }
.employee-resign {
    background: #f8f8f8;
    opacity: 0.7;
    border-left: 5px solid #b71c1c;
}
/* Karyawan aktif */
.employee-aktif {
    background: #f8f8f8;
    opacity: 0.7;
    border-left: 5px solid #99C2FA;
}

.employee-name {
    font-size: 14px;
    color: #263238;
}


/* =====================================================
   EMPLOYEE HEADER & NAME
===================================================== */
.employee-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.employee-name {
    font-size: 14px;
    color: var(--iam-muted);
}

    .employee-name b {
        color: var(--iam-text);
        font-weight: 600;
    }

/* =====================================================
   EMPLOYEE PHOTO
===================================================== */
.employee-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--iam-border);
    background: var(--iam-bg-soft);
}

/* TAB VERSION */
.employee-tabs-photo {
    width: 236px;
    height: 240px;
    object-fit: cover;
    border-radius: var(--iam-radius);
    border: 2px solid var(--iam-border);
    box-shadow: var(--iam-shadow-md);
}

/* =====================================================
   FORM CARD
===================================================== */
.employee-form,
.form-card {
    padding: 24px 28px;
}

    .employee-form .rz-label {
        font-size: 13px;
        font-weight: 600;
        color: var(--iam-text);
    }

    .employee-form .rz-textbox,
    .employee-form .rz-dropdown,
    .employee-form .rz-datepicker {
        border-radius: var(--iam-radius-sm);
        font-size: 14px;
    }

/* =====================================================
   FILTER BAR
===================================================== */
.header-filter {
    background: var(--iam-bg-soft);
    border: 1px solid var(--iam-border);
    border-radius: var(--iam-radius);
    padding: .75rem 1rem;
}

/* =====================================================
   SKELETON LOADING
===================================================== */
.iam-skeleton {
    position: relative;
    width: 100%;
    min-height: 90px; /* ⬅ tinggi default KPI card */
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

    .iam-skeleton::after {
        content: "";
        position: absolute;
        inset: 0;
        transform: translateX(-100%);
        background: linear-gradient( 90deg, transparent, rgba(255,255,255,.6), transparent );
        animation: iam-shimmer 1.4s infinite;
    }

@keyframes iam-shimmer {
    to {
        transform: translateX(100%);
    }
}

/* =====================================================
   BUTTON ACTION
===================================================== */
.employee-action-btn {
    min-width: 42px;
    height: 38px;
    border-radius: var(--iam-radius-sm);
    transition: all .2s ease;
}

    .employee-action-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 14px rgba(0,0,0,.15);
    }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 768px) {

    .iam-kpi {
        height: auto;
    }

    .employee-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .employee-tabs-photo {
        width: 100%;
        height: auto;
        max-width: 240px;
    }

    .employee-form {
        padding: 16px;
    }
}


/* =========================================================
   Page Header
   ========================================================= */
h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--corp-primary);
    margin-bottom: 16px;
    letter-spacing: .3px;
}

/* =========================================================
   Toolbar / Filter Section
   ========================================================= */
.filter-rz-stack {
    background: var(--corp-bg);
    border-radius: var(--corp-radius);
    padding: 14px 16px;
    margin-bottom: 12px;
    box-shadow: var(--corp-shadow);
}

    .filter-rz-stack > .rz-text {
        font-weight: 600;
        color: var(--corp-primary);
    }

/* Dropdown & input */
.rz-dropdown,
.rz-textbox {
    min-height: 34px;
    font-size: var(--corp-font-sm);
}

/* Button */
.rz-button {
    border-radius: 8px;
    font-weight: 600;
    transition: all .2s ease;
}

    /*.rz-button:hover {
        transform: translateY(-1px);
    }*/

/* Milad Box utama */
.milad-box {
    background: linear-gradient(135deg, #fff7e6, #ffe0b2);
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 16px;
    max-width: 100%;
    overflow: hidden;
    margin-bottom:10px;
}

/* Judul */
.milad-title {
    background: linear-gradient(90deg, #ff9800, #ff5722);
    color: #fff;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: 0.5px;
}
.milad-slider {
    overflow: hidden;
    position: relative;
}

.milad-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: milad-slide 40s linear infinite;
}

.milad-slider:hover .milad-track {
    animation-play-state: paused;
}

/* CARD */
.milad-card {
    min-width: 220px;
    background: rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(4px);
}

/* AVATAR */
.milad-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffd166;
    color: #7b0000;
    font-weight: bold;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* INFO */
.milad-nik {
    font-size: 12px;
    opacity: .9;
}

.milad-nama {
    font-size: 14px;
    font-weight: 600;
}

/* ANIMATION */
@keyframes milad-slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================================
   Progress Bar
   ========================================================= */
.rz-progressbar {
    margin-bottom: 12px;
    border-radius: 6px;
}

/* =========================================================
   Attendance Table
   ========================================================= */
.rz-datatable {
    border-radius: var(--corp-radius);
    overflow: hidden;
    box-shadow: var(--corp-shadow);
}

    .rz-datatable thead th {
        background: linear-gradient( 135deg, var(--corp-primary), var(--corp-secondary) );
        color: #fff;
        font-size: var(--corp-font-sm);
        font-weight: 700;
        text-align: center;
        padding: 8px 6px;
    }

.rz-datatable-data tr {
    transition: background .15s ease;
}

    .rz-datatable-data tr:hover {
        background: var(--corp-accent);
    }

.rz-datatable-data td {
    font-size: var(--corp-font-xs);
    color: var(--corp-text);
    text-align: center;
    padding: 6px 6px;
    border-bottom: 1px solid var(--corp-border);
}

/* =========================================================
   Agenda / Legenda Box
   ========================================================= */
.agenda-box {
    border: 1px solid var(--corp-border);
    background: #fafafa;
    border-radius: var(--corp-radius);
    padding: 10px 14px;
    font-size: var(--corp-font-xs);
    font-weight: 500;
    line-height: 1.6;
    color: var(--corp-text);
    box-shadow: var(--corp-shadow);
}

    .agenda-box h3 {
        font-size: 13px;
        margin: 0 0 6px 0;
        color: var(--corp-primary);
    }

/* =========================================================
   Print Area
   ========================================================= */
#contentToPrint {
    background: var(--corp-bg);
    border-radius: var(--corp-radius);
    padding: 12px;
    box-shadow: var(--corp-shadow);
}

/* =========================================================
   Utility
   ========================================================= */
.text-muted {
    color: var(--corp-muted);
}

.text-success {
    color: var(--corp-success);
}

.text-danger {
    color: var(--corp-danger);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 768px) {
    .rz-stack {
        padding: 10px;
    }

    h3 {
        font-size: 16px;
    }

    .rz-datatable-data td,
    .rz-datatable thead th {
        font-size: 9px;
        padding: 5px 4px;
    }
}


/* =====================================================
   IAM LOGIN MODULE
   Clean • Corporate • Mobile-first
===================================================== */

/* ===============================
   PAGE BASE
================================ */
.login-xxx-layout {
    min-height: 100vh;
    background: linear-gradient(135deg, #eef2f7, #f8fafc);
    font-family: 'Inter','Segoe UI',Arial,sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===============================
   CARD
================================ */
.login-xxx-card {
    width: 100%;
    max-width: 760px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(15,23,42,.12), 0 10px 25px rgba(15,23,42,.08);
    overflow: hidden;
    position: relative;
}

/* ===============================
   GRID
================================ */
.login-xxx-grid {
    display: grid;
    grid-template-columns: 38% 62%;
    min-height: 360px;
}

/* ===============================
   BRAND / LOGO
================================ */
.login-xxx-brand {
    background: linear-gradient(160deg, #0f172a, #1e3a8a);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    text-align: center;
}

.login-xxx-logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.35);
    margin-bottom: 1rem;
}

    .login-xxx-logo img {
        max-width: 65px;
        height: auto;
    }

.login-xxx-brand-text {
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: .95;
}

/* ===============================
   CONTENT
================================ */
.login-xxx-content {
    padding: 2rem 2.2rem;
}

    /* Heading */
    .login-xxx-content h3 {
        font-size: 1.1rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: .25rem;
    }

    .login-xxx-content p {
        font-size: .8rem;
        color: #64748b;
        margin-bottom: 1.4rem;
    }

    /* ===============================
   RADZEN FORM TUNING
================================ */
    .login-xxx-content .rz-label {
        font-size: .78rem;
        font-weight: 600;
        color: #0f172a;
    }

    .login-xxx-content .rz-textbox,
    .login-xxx-content .rz-password {
        border-radius: 10px;
        font-size: .85rem;
    }

        .login-xxx-content .rz-textbox input,
        .login-xxx-content .rz-password input {
            padding: .55rem .7rem;
        }

    /* ===============================
   BUTTON
================================ */
    .login-xxx-content .rz-button {
        width: 100%;
        border-radius: 12px;
        font-weight: 600;
        font-size: .85rem;
        padding: .6rem;
        background: linear-gradient(135deg, #1e40af, #1d4ed8);
        border: none;
        transition: all .25s ease;
    }

        .login-xxx-content .rz-button:hover {
            filter: brightness(1.05);
            transform: translateY(-1px);
        }

/* ===============================
   LOADING OVERLAY
================================ */
.login-xxx-loading {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: loginFade .3s ease;
}

.login-xxx-spinner {
    width: 42px;
    height: 42px;
    border: 4px solid #c7d2fe;
    border-top-color: #1e40af;
    border-radius: 50%;
    animation: spin .9s linear infinite;
}

.login-xxx-loading-text {
    margin-top: .8rem;
    font-size: .8rem;
    font-weight: 500;
    color: #1e293b;
}

/* ===============================
   FOOTER
================================ */
.login-xxx-footer {
    margin-top: 1rem;
    font-size: .72rem;
    color: #64748b;
    text-align: center;
}

/* ===============================
   ANIMATION
================================ */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes loginFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {

    .login-xxx-grid {
        grid-template-columns: 1fr;
    }

    .login-xxx-brand {
        padding: 1.5rem;
    }

    .login-xxx-logo {
        width: 88px;
        height: 88px;
    }

        .login-xxx-logo img {
            max-width: 52px;
        }

    .login-xxx-content {
        padding: 1.6rem 1.4rem;
    }
}
/* =========================================================
   APPROVAL DETAIL – CARD
========================================================= */
.approval-detail-card {
    margin-bottom: 20px !important;
    padding: 16px 20px !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 6px 18px rgba(0,0,0,.06) !important;
}

/* =========================================================
   APPROVAL DETAIL – LAYOUT
========================================================= */
.approval-detail-row {
    width: 100%;
}

.approval-detail-stack {
    display: flex;
    gap: 24px;
    width: 100%;
    flex-wrap: wrap;
}

/* =========================================================
   APPROVAL DETAIL – INFO TEXT
========================================================= */
.approval-detail-info span {
    display: block;
    font-size: 13px;
    color: #334155;
    margin-bottom: 4px;
}

    .approval-detail-info span b {
        color: #0f172a;
        font-weight: 600;
    }

/* =========================================================
   APPROVAL DETAIL – TABLE
========================================================= */
.approval-detail-table {
    border-collapse: collapse;
    width: 100%;
    min-width: 360px;
}

    .approval-detail-table th,
    .approval-detail-table td {
        border: 1px solid #e5e7eb;
        padding: 10px 12px;
        text-align: center;
        vertical-align: middle;
        font-size: 13px;
    }

    .approval-detail-table tr:first-child td {
        background: #f8fafc;
        font-weight: 600;
        color: #0f172a;
    }

    /* =========================================================
   APPROVAL DETAIL – BUTTON
========================================================= */
    .approval-detail-table .rz-button {
        margin: 2px;
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 8px;
        font-weight: 600;
        transition: all .15s ease;
    }

        .approval-detail-table .rz-button:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 10px rgba(0,0,0,.15);
        }

    /* =========================================================
   APPROVAL DETAIL – LABEL (APPROVED)
========================================================= */
    .approval-detail-table .rz-label {
        font-size: 12px;
        font-weight: 600;
        color: #16a34a;
    }

/* =========================================================
   APPROVAL DETAIL – DATE TEXT
========================================================= */
.approval-detail-date {
    font-size: 11px;
    color: #64748b;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 768px) {

    .approval-detail-stack {
        flex-direction: column;
        gap: 16px;
    }

    .approval-detail-table {
        min-width: 100%;
        font-size: 12px;
    }

        .approval-detail-table th,
        .approval-detail-table td {
            padding: 8px;
        }
}

/* ===============================
   SECTION TITLE Page
================================ */
.title-page {
    font-size: 20px;
    font-weight: 700;
    color: var(--iam-text);
    margin-bottom: 16px;
    letter-spacing: .2px;
    line-height: 1.25;
    /* Visual accent */
    padding-left: 12px;
    border-left: 4px solid var(--iam-primary);
}

    /* Optional subtitle (jika ada <small> / span) */
    .title-page small,
    .title-page .subtitle {
        display: block;
        margin-top: 4px;
        font-size: 13px;
        font-weight: 500;
        color: var(--iam-muted);
        letter-spacing: .1px;
    }

/* ===============================
   TABS CONTAINER
================================ */
.akun-info-tabs {
    background: var(--iam-bg-card);
    border-radius: var(--iam-radius);
    box-shadow: var(--iam-shadow-sm);
    border: 1px solid var(--iam-border);
    overflow: hidden;
}

    /* LEFT TAB MENU */
    .akun-info-tabs .rz-tabs-nav {
        background: linear-gradient(180deg, #f8fafc, #eef2f7);
        border-right: 1px solid var(--iam-border);
        padding: 6px;
    }

    .akun-info-tabs .rz-tabview-item {
        font-size: 13px;
        font-weight: 600;
        color: var(--iam-muted);
        border-radius: 10px;
        margin-bottom: 4px;
        padding: 10px 12px;
        transition: all .2s ease;
    }

        .akun-info-tabs .rz-tabview-item:hover {
            background: #e5edff;
            color: var(--iam-primary);
        }

        .akun-info-tabs .rz-tabview-item.rz-tabview-selected {
            background: linear-gradient(135deg, #1e40af, #2563eb);
            color: #fff;
            box-shadow: 0 6px 14px rgba(37,99,235,.25);
        }

/* ===============================
   TAB CONTENT
================================ */
.akun-info-content {
    padding: 18px 22px;
}

/* ===============================
   PROFILE HEADER
================================ */
.akun-info-profile {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.akun-info-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--iam-border);
    background: var(--iam-bg-soft);
    box-shadow: var(--iam-shadow-sm);
}

/* ===============================
   PROFILE TEXT
================================ */
.akun-info-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    color: var(--iam-muted);
    text-transform: uppercase;
    margin-top: 6px;
}

.akun-info-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--iam-text);
}

/* ===============================
   FORM SECTION
================================ */
.akun-info-password {
    max-width: 520px;
    margin-top: 6px;
}

    /* ===============================
   ROW ALIGNMENT
================================ */
    .akun-info-password .rz-row {
        margin-bottom: 10px;
    }

/* ===============================
   LABEL
================================ */
.akun-info-password-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--iam-text);
}

/* ===============================
   PASSWORD INPUT
================================ */
.akun-info-password .rz-password {
    width: 100%;
}

    .akun-info-password .rz-password input {
        height: 36px;
        font-size: 14px;
        border-radius: var(--iam-radius-sm);
    }

/* ===============================
   HELPER TEXT
================================ */
.akun-info-password-hint {
    font-size: 11px;
    color: var(--iam-muted);
    margin-top: 2px;
}

/* ===============================
   ACTION BAR
================================ */
.akun-info-password-action {
    margin-top: 14px;
    display: flex;
    gap: .5rem;
}

    .akun-info-password-action .rz-button {
        min-width: 120px;
        height: 36px;
        border-radius: 10px;
        font-weight: 600;
    }

/* ===============================
   ALERT (ERROR / INFO)
================================ */
.akun-info-password .rz-alert {
    font-size: 12px;
    border-radius: 10px;
    padding: 8px 10px;
}

/* ===============================
   SECURITY NOTE
================================ */
.akun-info-password-note {
    margin-top: 10px;
    font-size: 12px;
    color: var(--iam-muted);
    background: #f8fafc;
    border-left: 4px solid var(--iam-primary);
    padding: 8px 10px;
    border-radius: 8px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {

    .akun-info-password {
        max-width: 100%;
    }

    .akun-info-password-action {
        flex-direction: column;
    }

        .akun-info-password-action .rz-button {
            width: 100%;
        }
}
/* ===============================
   MFA SECTION
================================ */
/* ===============================
   MFA CONTAINER
================================ */
.akun-info-mfa {
    max-width: 560px;
    margin-top: 6px;
}

    /* ===============================
   FORM ROW
================================ */
    .akun-info-mfa .rz-row {
        margin-bottom: 10px;
    }

/* ===============================
   LABEL
================================ */
.akun-info-mfa-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--iam-text);
}

/* ===============================
   PASSWORD INPUT
================================ */
.akun-info-mfa .rz-password input {
    height: 36px;
    font-size: 14px;
    border-radius: var(--iam-radius-sm);
}

/* ===============================
   MFA SWITCH AREA
================================ */
.akun-info-mfa-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

/* ===============================
   QR CONTAINER
================================ */
.akun-info-mfa-qr {
    margin-top: 10px;
    padding: 12px;
    background: var(--iam-bg-soft);
    border: 1px dashed var(--iam-border);
    border-radius: 12px;
    text-align: center;
}

    /* QR IMAGE */
    .akun-info-mfa-qr img {
        width: 140px;
        height: auto;
        border-radius: 10px;
        box-shadow: var(--iam-shadow-sm);
    }

/* ===============================
   QR NOTE
================================ */
.akun-info-mfa-note {
    margin-top: 8px;
    font-size: 12px;
    color: var(--iam-muted);
    line-height: 1.5;
}

    .akun-info-mfa-note strong {
        color: var(--iam-danger);
    }

/* ===============================
   ACTION BAR
================================ */
.akun-info-mfa-action {
    margin-top: 14px;
    display: flex;
    gap: .5rem;
}

    .akun-info-mfa-action .rz-button {
        min-width: 120px;
        height: 36px;
        border-radius: 10px;
        font-weight: 600;
    }

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {

    .akun-info-mfa {
        max-width: 100%;
    }

    .akun-info-mfa-action {
        flex-direction: column;
    }

        .akun-info-mfa-action .rz-button {
            width: 100%;
        }
}

.laporan {
    --laporan-gap: 12px;
    --laporan-label-width: 150px;
}

   
    /* ---------- Progress Bar ---------- */
    .laporan .rz-progressbar {
        margin-bottom: 16px;
    }

    /* ---------- Filter Rows ---------- */
    .laporan .rz-stack-horizontal {
        gap: var(--laporan-gap);
        padding: 8px 0;
    }

    /* Label kiri (Ambil Data / Cetak Data / Catatan) */
    .laporan .rz-text {
        width: var(--laporan-label-width);
        font-weight: 600;
        color: var(--iam-muted);
        font-size: 13px;
    }

    /* ---------- Form Field ---------- */
    .laporan .rz-form-field {
        min-width: 180px;
    }

    .laporan .rz-dropdown {
        width: 100%;
    }

    /* ---------- Action Buttons ---------- */
    .laporan .rz-button {
        height: 36px;
        min-width: 36px;
    }

        .laporan .rz-button.rz-primary {
            font-weight: 600;
        }

        .laporan .rz-button.rz-success {
            font-weight: 600;
        }

    /* ---------- Agenda / Catatan ---------- */
    .laporan .agenda-box {
        margin-top: 8px;
        background: #f9fafb;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        padding: 12px 14px;
        font-size: 13px;
        color: #374151;
        line-height: 1.6;
    }

        /* Judul Agenda */
        .laporan .agenda-box h3 {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--iam-text);
        }

        /* Bold Legend */
        .laporan .agenda-box b {
            color: var(--iam-primary);
            font-weight: 700;
        }

    /* ---------- Print Area ---------- */
    .laporan #contentToPrint {
        margin-top: 16px;
        padding: 12px;
        background: #ffffff;
        border-radius: 8px;
        border: 1px solid #e5e7eb;
    }