/* 
  Jimpitan Mobile Web App Stylesheet
  Matches Android app screenshots (v2.3) exactly.
*/

:root {
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --secondary: #7F00FF;
    --accent-yellow: #FFC800; /* Bright gold/yellow for main buttons */
    --accent-yellow-dark: #E0B800;
    --background: #FFFFFF; /* White base background */
    --background-gray: #F4F7FE; /* Soft blue-gray */
    --surface: #FFFFFF;
    --surface-secondary: #F1F5F9;
    --text-primary: #0F172A;
    --text-secondary: #64748B;
    --text-white: #FFFFFF;
    --danger: #EF4444;
    --success: #10B981;
    --border-color: #CBD5E1;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Gradient matching Android dashboard/login */
    --app-gradient: linear-gradient(135deg, #0052CC 0%, #7F00FF 100%);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #0F172A; /* Frame background for desktop */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

/* App Shell (Mobile viewport wrapper) */
.app-shell {
    width: 100%;
    max-width: 480px;
    height: 100vh;
    height: 100dvh; /* Fix cut-off issues on mobile browser address bar */
    background-color: var(--background-gray);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

@media (min-width: 481px) {
    .app-shell {
        height: 850px;
        border-radius: 20px;
        border: 8px solid #1E293B;
    }
}

/* Screen Transitions */
.screen {
    display: none;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--background-gray);
    overflow: hidden;
}

.screen.active {
    display: flex;
}

/* Common Scrollable Container */
.scrollable {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    padding-bottom: 80px;
}

.scrollable.with-sticky-top {
    padding-top: 16px;
}

.scrollable.with-bottom-action {
    padding-bottom: 90px;
}

.no-padding {
    padding: 0 !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s, box-shadow 0.2s;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-white);
}

.btn-secondary {
    background-color: var(--surface-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-yellow {
    background-color: var(--accent-yellow);
    color: #1E293B; /* Dark text on yellow */
    box-shadow: 0 4px 6px -1px rgba(255, 200, 0, 0.2);
}

.btn-yellow:hover {
    background-color: #E6B400;
}

.btn-round {
    border-radius: 30px !important;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-purple {
    background-color: var(--secondary);
    color: var(--text-white);
}

.btn-danger {
    background-color: var(--danger);
    color: var(--text-white);
}

.flex-1 {
    flex: 1;
}

.text-left {
    justify-content: flex-start;
}

/* Forms */
.form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    font-size: 14px;
    background-color: var(--surface);
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: var(--primary);
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 48px;
}

.toggle-password {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 48px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card basic */
.card {
    background-color: var(--surface);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 16px;
}

/* ==================== SCREEN 1: LOGIN ==================== */
#screen-login {
    background: var(--app-gradient);
    justify-content: center;
}

.login-container {
    padding: 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-around; /* Distribute space more evenly and compactly */
    overflow-y: auto;
}

.login-branding {
    text-align: center;
    margin-top: 10px;
}

.login-logo-circle {
    width: 76px;
    height: 76px;
    background-color: var(--surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.logo-inner-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.login-branding h1 {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.login-branding p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    font-weight: 500;
}

.login-card {
    background-color: var(--surface);
    border-radius: 24px;
    padding: 24px 20px;
    box-shadow: var(--shadow-lg);
    margin: 12px 0;
}

.login-card h2 {
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.form-group-clean {
    margin-bottom: 16px;
    position: relative;
}

.form-group-clean input {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    font-size: 15px;
    background-color: var(--surface);
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s;
}

.form-group-clean input:focus {
    border-color: var(--text-secondary);
}

.login-footer {
    text-align: center;
    margin-bottom: 20px;
}

.login-footer .help-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    margin-bottom: 6px;
}

.login-footer .version-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 600;
}

/* ==================== SCREEN 2: DASHBOARD ==================== */
.dashboard-header-gradient {
    background: var(--app-gradient);
    color: var(--text-white);
    padding: 24px 20px 32px 20px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.header-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.header-user-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.header-user-info .welcome-text {
    font-size: 18px;
    font-weight: 600;
}

.header-user-info .group-text {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

.header-user-info .time-text {
    font-size: 11px;
    opacity: 0.75;
}

.header-avatar-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: background-color 0.2s;
}

.header-avatar-circle:active {
    background-color: rgba(255, 255, 255, 0.35);
}

.header-counter-box {
    margin-bottom: 24px;
}

.counter-label {
    font-size: 10px;
    font-weight: 700;
    opacity: 0.8;
    letter-spacing: 0.8px;
    display: block;
    margin-bottom: 4px;
}

.header-counter-box h1 {
    font-size: 40px;
    font-weight: 700;
}

.recap-container-gradient {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.recap-title-white {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.9;
}

.recap-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.recap-card {
    background-color: var(--surface);
    border-radius: 12px;
    padding: 10px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.recap-card .label {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.recap-card .count {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.recap-card .rupiah {
    font-size: 9px;
    font-weight: 600;
}

.card-isi {
    border: 1px solid var(--success);
}
.card-isi .count, .card-isi .label, .card-isi .rupiah { color: var(--success); }

.card-kosong {
    border: 1px solid var(--danger);
}
.card-kosong .count, .card-kosong .label, .card-kosong .rupiah { color: var(--danger); }

.card-belum {
    border: 1px solid var(--text-secondary);
}
.card-belum .count, .card-belum .label { color: var(--text-primary); }

/* Overlapping scrollable content container */
.dashboard-scrollable-container {
    flex: 1;
    overflow-y: auto;
    background-color: var(--background);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    margin-top: -16px;
    padding: 24px 20px 80px 20px;
    z-index: 2;
    position: relative;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
}

/* Swipe refresh spinner styling */
.swipe-refresh-spinner {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    z-index: 10;
}

.swipe-refresh-spinner.active {
    display: block;
}

.section-container {
    margin-bottom: 24px;
}

.section-container.border-top {
    border-top: 1px solid var(--surface-secondary);
    padding-top: 20px;
}

.section-container h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

/* Akses Navigasi circular button menus */
.nav-menu-row {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
}

.nav-menu-btn-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    width: 68px;
}

.nav-circle-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.15s;
}

.nav-menu-btn-item:active .nav-circle-btn {
    transform: scale(0.92);
}

.bg-circle-blue {
    background: linear-gradient(135deg, #0066FF 0%, #5c00ff 100%);
}

.bg-circle-red {
    background: linear-gradient(135deg, #FF4D4D 0%, #B30000 100%);
}

.bg-circle-green {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.nav-menu-btn-item span {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
}

/* History rows */
.history-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.history-row-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.history-item-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.history-item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.history-item-blok {
    font-size: 11px;
    color: var(--text-secondary);
}

.history-item-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.history-item-time {
    font-size: 11px;
    color: var(--text-secondary);
}

.badge-status {
    font-size: 9px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    min-width: 60px;
    text-align: center;
}

.badge-isi {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
}

.badge-kosong {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border: 1px solid var(--danger);
}

.info-desc-text {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.info-link-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

/* Bottom Nav bar */
.bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 76px; /* Increased from 60px to clear OS virtual nav keys */
    padding-bottom: 16px; /* Pushes icons and text labels up so they are fully visible */
    background-color: var(--surface);
    border-top: 1px solid var(--surface-secondary);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 10;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--text-secondary);
    cursor: pointer;
    flex: 1;
    height: 100%;
}

.nav-item i {
    font-size: 18px;
}

.nav-item span {
    font-size: 9px;
    font-weight: 600;
}

.nav-item.active {
    color: var(--primary);
}

/* ==================== SUB-HEADERS ==================== */
.sub-header-clean {
    background-color: var(--surface);
    border-bottom: 1px solid var(--surface-secondary);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 56px;
    z-index: 10;
    flex-shrink: 0;
}

.sub-header-clean h2 {
    font-size: 15px;
    font-weight: 700;
    color: #1E293B;
}

.search-bar-clean {
    background-color: var(--surface);
    padding: 8px 16px;
    border-bottom: 1px solid var(--surface-secondary);
    flex-shrink: 0;
}

.search-input-wrapper-clean {
    position: relative;
    width: 100%;
}

.search-input-wrapper-clean i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 14px;
}

.search-input-wrapper-clean input {
    width: 100%;
    padding: 10px 14px 10px 38px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background-color: var(--surface);
    color: var(--text-primary);
    font-size: 13px;
    outline: none;
}

/* ==================== SCREEN 3: SCAN QR ==================== */
.scanner-card {
    background-color: var(--surface);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.scanner-viewport-wrapper {
    width: 100%;
    background-color: #000;
    border-radius: 12px;
    aspect-ratio: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.form-card h3, .history-table-container h3 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.form-row-inline {
    display: flex;
    gap: 8px;
}

.form-row-inline input {
    flex: 1;
}

/* History table */
.history-table-container {
    background-color: var(--surface);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
}

.history-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
}

.history-table th {
    font-weight: 700;
    color: var(--text-secondary);
    padding: 8px 4px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.history-table td {
    padding: 10px 4px;
    border-bottom: 1px solid var(--surface-secondary);
    color: var(--text-primary);
    vertical-align: middle;
}

/* ==================== SCREEN 4: CHECKLIST INPUT ==================== */
.checklist-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--surface);
    margin-bottom: 90px; /* Prevent last rows from being covered by the save button */
}

.checklist-table th {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 12px 16px;
    border-bottom: 1px solid var(--surface-secondary);
    text-align: left;
    background-color: var(--surface);
    position: sticky;
    top: 0;
    z-index: 5;
}

.checklist-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--surface-secondary);
    font-size: 13px;
    color: var(--text-primary);
    vertical-align: middle;
}

.checklist-table tr td:first-child {
    text-align: center;
    font-weight: 600;
    color: var(--text-secondary);
}

.checklist-table td b {
    font-weight: 600;
}

/* Radio button status selectors in table */
.checklist-item-status-selector {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.radio-pill-item {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
}

.radio-check-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    position: relative;
    display: inline-block;
}

/* Custom styled selected states */
.radio-pill-item.active-isi .radio-check-circle {
    border-color: var(--success);
    background-color: var(--success);
}

.radio-pill-item.active-kosong .radio-check-circle {
    border-color: var(--danger);
    background-color: var(--danger);
}

.radio-pill-item.active-isi {
    color: var(--success);
}

.radio-pill-item.active-kosong {
    color: var(--danger);
}

/* Bottom Actions container (Floating button style to prevent cut-off) */
.bottom-action-container {
    position: absolute;
    bottom: 24px; /* Raised above system navbar */
    left: 16px;
    width: calc(100% - 32px);
    background-color: transparent;
    border-top: none;
    z-index: 10;
    padding: 0;
}

/* ==================== WARGA LIST ITEMS ==================== */
.warga-list-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.warga-row-item {
    background-color: var(--surface);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.warga-row-item:active {
    background-color: var(--surface-secondary);
}

.warga-row-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.warga-initial-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(0, 102, 255, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.warga-row-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.warga-row-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.warga-row-sub1 {
    font-size: 11px;
    color: var(--text-secondary);
}

.warga-row-sub2 {
    font-size: 10px;
    font-weight: 600;
}

.warga-row-action {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    background-color: rgba(0, 102, 255, 0.08);
    padding: 4px 8px;
    border-radius: 6px;
}

/* ==================== FORMS OVERLAY ==================== */
.form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.4);
    z-index: 20;
    display: flex;
    align-items: flex-end;
}

.form-overlay .form-card {
    width: 100%;
    border-radius: 24px 24px 0 0;
    margin-bottom: 0;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    background-color: var(--surface);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Pelunasan dates checkbox */
.checkbox-dates-list {
    max-height: 180px;
    overflow-y: auto;
    background-color: var(--surface-secondary);
    border-radius: 12px;
    padding: 8px 12px;
}

.select-all-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
}

.select-all-row label {
    font-size: 12px;
    font-weight: 600;
}

.date-checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(203, 213, 225, 0.3);
}

.date-checkbox-item:last-child {
    border-bottom: none;
}

.date-checkbox-item label {
    font-size: 12px;
    color: var(--text-primary);
}

/* ==================== DIALOGS & MODALS ==================== */
.custom-dialog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.5);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

/* Warning Toast toast_warning */
.warning-dialog-content {
    background-color: #323232;
    color: var(--text-white);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 300px;
    box-shadow: var(--shadow-lg);
}

.warning-icon {
    font-size: 24px;
    color: var(--accent-yellow);
}

#warning-dialog-message {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
}

/* Modal Cards */
.modal-card {
    background-color: var(--surface);
    border-radius: 20px;
    width: 100%;
    max-width: 360px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.modal-card.width-90 {
    max-width: 90%;
}

.modal-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--surface-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.header-colored-clean {
    padding: 20px;
    border-bottom: 1px solid var(--surface-secondary);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.header-colored-clean h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary); /* Blue text in header */
}

.header-colored-clean p {
    font-size: 11px;
    color: var(--text-secondary);
}

.btn-close-modal {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-secondary);
    cursor: pointer;
}

.modal-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.scrollable-modal-body {
    max-height: 360px;
    overflow-y: auto;
}

.modal-footer-clean {
    padding: 16px 20px;
    display: flex;
    gap: 12px;
    background-color: var(--surface);
    border-top: 1px solid var(--surface-secondary);
}

.btn-dialog-gray {
    background-color: #F1F5F9;
    color: #475569;
    border-radius: 20px;
}

.btn-dialog-blue {
    background-color: var(--primary);
    color: var(--text-white);
    border-radius: 20px;
}

/* Members checklist */
.members-items-container {
    display: flex;
    flex-direction: column;
}

.member-row-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--surface-secondary);
}

.member-row-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.member-avatar-initials {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(0, 102, 255, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.member-row-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.member-row-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.member-row-blok {
    font-size: 10px;
    color: var(--text-secondary);
}

.member-row-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Single Jimpitan Choice */
.status-options-row {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.status-options-row .btn {
    height: 72px;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
}

.status-options-row .btn i {
    font-size: 20px;
}
