* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background: linear-gradient(135deg, #f3f5f8 0%, #f0f2f7 100%);
}

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

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

.fade-in {
    animation: fadeIn .3s ease-out;
}

.slide-up {
    animation: slideUp .4s ease-out;
}

.spinner {
    animation: spin 1s linear infinite;
}

.loading {
    animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f3f5f8;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.platform-card input {
    display: none;
}

.platform-card input:checked+label {
    border-color: #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    box-shadow: 0 4px 12px rgba(37, 99, 235, .2);
    color: #1e40af;
    font-weight: 600;
}

.platform-card label {
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    cursor: pointer;
    display: block;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
    font-size: 14px;
    color: #64748b;
    background: white;
}

.platform-card label:hover {
    border-color: #2563eb;
    background-color: #f8fafc;
}

.verdict-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: all .2s;
}

.verdict-highly-eligible {
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #86efac;
}

.verdict-eligible {
    background: #dcfce7;
    color: #16a34a;
    border: 1px solid #86efac;
}

.verdict-conditional {
    background: #fffbeb;
    color: #d97706;
    border: 1px solid #fcd34d;
}

.verdict-not-yet {
    background: #fef3c7;
    color: #f59e0b;
    border: 1px solid #fde68a;
}

.verdict-not-eligible {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.required-badge {
    background: #dbeafe;
    color: #1e40af;
    font-size: .65rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-left: 4px;
}

.form-section {
    background: white;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
    transition: all .2s;
}

.form-section:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.form-label {
    font-weight: 600;
    font-size: 14px;
    color: #1e293b;
    margin-bottom: 8px;
    display: block;
}

.form-hint {
    font-size: 12px;
    color: #64748b;
    margin-top: 6px;
    display: block;
}

input,
select,
textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    transition: all .2s;
    background: white;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
    background: #f8fafc;
}

input:disabled,
select:disabled {
    background: #f1f3f7;
    color: #94a3b8;
    cursor: not-allowed;
}

#check-form input:not([type="radio"]),
#check-form select,
#check-form textarea,
#edit-form input:not([type="radio"]),
#edit-form select,
#edit-form textarea {
    padding: 10px 12px !important;
}

#assessment-mode {
    width: 100%;
    padding: 10px 12px !important;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    background: white;
    color: #1e293b;
    cursor: pointer;
    transition: all .2s;
}

#assessment-mode:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
    background: #f8fafc;
}

#bulk-file {
    width: 100%;
    padding: 10px 12px !important;
    border: 2px dashed #cbd5e1;
    border-radius: 14px;
    background: #f8fafc;
    color: #334155;
    font-size: 14px;
    cursor: pointer;
    transition: all .25s ease;
}

#bulk-file:hover {
    border-color: #2563eb;
    background: #eff6ff;
}

#bulk-file:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
    background: #fff;
}

#bulk-file::file-selector-button,
#bulk-file::-webkit-file-upload-button {
    margin-right: 14px;
    padding: 9px 16px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(37, 99, 235, .22);
    transition: all .25s ease;
}

#bulk-file::file-selector-button:hover,
#bulk-file::-webkit-file-upload-button:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37, 99, 235, .3);
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(37, 99, 235, .2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, .3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.btn-secondary {
    background: white;
    border: 1.5px solid #e2e8f0;
    color: #1e293b;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: all .2s;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.btn-danger {
    background: #ef4444;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 13px;
    transition: all .2s;
    border: none;
    cursor: pointer;
}

.btn-danger:hover {
    background: #dc2626;
}

.btn-edit {
    background: #f59e0b;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 13px;
    transition: all .2s;
    border: none;
    cursor: pointer;
}

.btn-edit:hover {
    background: #d97706;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    animation: fadeIn .2s ease-out;
}

.modal {
    background: white;
    border-radius: 16px;
    padding: 28px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
    animation: slideUp .3s cubic-bezier(.4, 0, .2, 1);
}

.nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-pill:hover {
    color: #1e293b;
    background: #ffffff;
}

.nav-pill.active {
    background: #ffffff;
    color: #2563eb;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
}

.nav-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #475569;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-action-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #1e293b;
}

.user-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 210px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 13px;
    font-weight: 700;
}

.logout-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 12px;
    border: 1px solid #fee2e2;
    background: #fff;
    color: #dc2626;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.logout-btn:hover {
    background: #fef2f2;
    border-color: #fecaca;
}

.mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 8px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-nav-link.active {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #2563eb;
}

.nav-action-icon,
.logout-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logout-icon {
    color: #dc2626;
    border-color: #fee2e2;
}

.nav-bar {
    position: sticky;
    top: 0;
    z-index: 40;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
}

.nav-link {
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: all .2s;
    color: #64748b;
    text-decoration: none;
}

.nav-link.active {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #2563eb;
    font-weight: 600;
}

.nav-link:hover {
    background: #f1f3f7;
}

.table-row {
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 0;
    transition: all .2s;
}

.table-row:hover {
    background: #f8fafc;
}

.table-row:last-child {
    border-bottom: none;
}

.score-ring {
    animation: fadeIn .5s ease-out;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .08));
}

.criteria-item {
    border-left: 4px solid #e5e7eb;
    padding-left: 12px;
    margin-bottom: 12px;
    transition: all .2s;
}

.criteria-item.met,
.criteria-item.partial,
.criteria-item.not-met {
    padding: 12px;
    border-radius: 8px;
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 24px;
}

.criteria-item.met {
    border-left-color: #22c55e;
    background: #f0fdf4;
}

.criteria-item.partial {
    border-left-color: #f59e0b;
    background: #fffbeb;
}

.criteria-item.not-met {
    border-left-color: #ef4444;
    background: #fef2f2;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e2e8f0;
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
}

.empty-state-icon {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.text-muted {
    color: #64748b;
    font-size: 14px;
}

.text-success {
    color: #16a34a;
}

.text-warning {
    color: #f59e0b;
}

.text-danger {
    color: #dc2626;
}

@media (max-width:768px) {
    .form-section {
        padding: 16px;
    }

    .modal {
        width: 95%;
    }

    .nav-link {
        padding: 8px 12px;
        font-size: 13px;
    }
}

/* ==================== AUTH UI ==================== */
.auth-input {
    padding: 10px 12px !important;
}

.auth-input.pl-10 {
    padding-left: 40px !important;
}

.auth-input.pr-10 {
    padding-right: 40px !important;
}

/* ==================== AUDIT LOG UI ==================== */
.audit-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #475569;
}

.audit-login {
    background: #eff6ff;
    color: #2563eb;
    border-color: #bfdbfe;
}

.audit-create,
.audit-bulk_create {
    background: #f0fdf4;
    color: #16a34a;
    border-color: #bbf7d0;
}

.audit-edit {
    background: #fffbeb;
    color: #d97706;
    border-color: #fde68a;
}

.audit-delete {
    background: #fef2f2;
    color: #dc2626;
    border-color: #fecaca;
}

/* ==================== DELETE PROTECTION UI ==================== */
#delete-confirm-input {
    width: 100%;
    padding: 10px 12px !important;
    border: 1px solid #fecaca;
    border-radius: 10px;
    font-size: 14px;
    background: #ffffff;
    color: #1e293b;
    transition: all 0.2s ease;
}

#delete-confirm-input:focus {
    outline: none;
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
    background: #ffffff;
}

#delete-confirm-input::placeholder {
    color: #94a3b8;
}

/* ==================== PREMIUM TOAST NOTIFICATIONS ==================== */
#toast-container {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: min(420px, calc(100vw - 28px));
    pointer-events: none;
}

.toast {
    position: relative;
    display: grid;
    grid-template-columns: 42px 1fr 34px;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    padding: 14px 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(226, 232, 240, 0.85);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.14),
        0 4px 12px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    pointer-events: auto;
    opacity: 0;
    transform: translateX(24px) translateY(-8px) scale(0.98);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.2s ease;
}

.toast:hover {
    box-shadow:
        0 22px 55px rgba(15, 23, 42, 0.18),
        0 6px 16px rgba(15, 23, 42, 0.1);
    transform: translateX(0) translateY(0) scale(1.01);
}

.toast-show {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

.toast-hide {
    opacity: 0;
    transform: translateX(28px) translateY(-6px) scale(0.96);
}

.toast-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.toast-content {
    min-width: 0;
    padding-top: 1px;
}

.toast-title {
    font-size: 14px;
    line-height: 1.25;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.toast-message {
    margin-top: 3px;
    font-size: 13px;
    line-height: 1.45;
    color: #64748b;
    word-break: break-word;
}

.toast-close {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: #94a3b8;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.18s ease;
}

.toast-close:hover {
    background: rgba(148, 163, 184, 0.14);
    color: #334155;
}

.toast-close:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16);
}

.toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    transform-origin: left;
    animation-name: toastProgress;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

@keyframes toastProgress {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}

.toast-spinner {
    animation: spin 1s linear infinite;
}

/* Success */
.toast-success {
    border-color: rgba(134, 239, 172, 0.75);
}

.toast-success .toast-icon {
    background: #dcfce7;
    color: #16a34a;
}

.toast-success .toast-progress {
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

/* Error */
.toast-error {
    border-color: rgba(252, 165, 165, 0.8);
}

.toast-error .toast-icon {
    background: #fee2e2;
    color: #dc2626;
}

.toast-error .toast-progress {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

/* Warning */
.toast-warning {
    border-color: rgba(253, 230, 138, 0.9);
}

.toast-warning .toast-icon {
    background: #fef3c7;
    color: #d97706;
}

.toast-warning .toast-progress {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

/* Info */
.toast-info {
    border-color: rgba(191, 219, 254, 0.85);
}

.toast-info .toast-icon {
    background: #dbeafe;
    color: #2563eb;
}

.toast-info .toast-progress {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
}

/* Loading */
.toast-loading {
    border-color: rgba(191, 219, 254, 0.85);
}

.toast-loading .toast-icon {
    background: #eff6ff;
    color: #2563eb;
}

/* ==================== DARK MODE SUPPORT ==================== */
@media (prefers-color-scheme: dark) {
    .toast {
        background: rgba(15, 23, 42, 0.86);
        border-color: rgba(51, 65, 85, 0.9);
        box-shadow:
            0 18px 45px rgba(0, 0, 0, 0.35),
            0 4px 12px rgba(0, 0, 0, 0.25);
    }

    .toast-title {
        color: #f8fafc;
    }

    .toast-message {
        color: #cbd5e1;
    }

    .toast-close {
        color: #94a3b8;
    }

    .toast-close:hover {
        background: rgba(148, 163, 184, 0.18);
        color: #f8fafc;
    }
}

/* ==================== MOBILE TOAST LAYOUT ==================== */
@media (max-width: 640px) {
    #toast-container {
        top: 12px;
        right: 12px;
        left: 12px;
        width: auto;
    }

    .toast {
        grid-template-columns: 38px 1fr 30px;
        gap: 10px;
        padding: 13px 12px 15px;
        border-radius: 16px;
    }

    .toast-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        font-size: 16px;
    }

    .toast-title {
        font-size: 13px;
    }

    .toast-message {
        font-size: 12px;
    }
}

/* ==================== RECORDS FILTER TOOLBAR ==================== */
.records-toolbar {
    display: grid;
    grid-template-columns: minmax(360px, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 16px;
}

.records-search-wrap {
    position: relative;
    width: 100%;
    min-width: 0;
}

.records-search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 15px;
    pointer-events: none;
}

.records-search-input {
    width: 100%;
    height: 48px;
    padding: 12px 14px 12px 44px !important;
    border: 1px solid #dbe3ee;
    border-radius: 14px;
    background: #ffffff;
    color: #0f172a;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.records-search-input::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.records-search-input:focus {
    outline: none;
    border-color: #2563eb;
    background: #f8fafc;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.records-filter-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.records-filter-select {
    width: 190px;
    height: 48px;
    padding: 12px 38px 12px 14px !important;
    border: 1px solid #dbe3ee;
    border-radius: 14px;
    background: #ffffff;
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.records-filter-select:focus {
    outline: none;
    border-color: #2563eb;
    background: #f8fafc;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.records-filter-select:hover,
.records-search-input:hover {
    border-color: #cbd5e1;
}

/* ==================== RESPONSIVE RECORDS FILTER TOOLBAR ==================== */
@media (max-width: 1024px) {
    .records-toolbar {
        grid-template-columns: 1fr;
    }

    .records-filter-wrap {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .records-filter-select {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .records-toolbar {
        padding: 14px;
        gap: 10px;
    }

    .records-search-input,
    .records-filter-select {
        height: 46px;
        font-size: 14px;
        border-radius: 13px;
    }

    .records-filter-wrap {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* ==================== APPLICATION STATUS UI ==================== */
.btn-decision {
    background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(15, 118, 110, 0.2);
}

.btn-decision:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(15, 118, 110, 0.28);
}

.decision-badge,
.app-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
    border: 1px solid #e2e8f0;
}

.decision-pending {
    background: #f8fafc;
    color: #64748b;
    border-color: #e2e8f0;
}

.decision-selected {
    background: #f0fdf4;
    color: #16a34a;
    border-color: #bbf7d0;
}

.decision-rejected {
    background: #fef2f2;
    color: #dc2626;
    border-color: #fecaca;
}

.decision-hold {
    background: #fffbeb;
    color: #d97706;
    border-color: #fde68a;
}

.app-status-not-started {
    background: #f8fafc;
    color: #64748b;
    border-color: #e2e8f0;
}

.app-status-review {
    background: #eff6ff;
    color: #2563eb;
    border-color: #bfdbfe;
}

.app-status-docs {
    background: #fffbeb;
    color: #d97706;
    border-color: #fde68a;
}

.app-status-visa {
    background: #eef2ff;
    color: #4f46e5;
    border-color: #c7d2fe;
}

.app-status-completed {
    background: #f0fdf4;
    color: #15803d;
    border-color: #bbf7d0;
}

.application-status-modal {
    max-width: 560px;
}

.status-form-control {
    width: 100%;
    padding: 10px 12px !important;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    background: #ffffff;
    color: #1e293b;
    transition: all 0.2s ease;
}

.status-form-control:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: #f8fafc;
}

.status-notes {
    resize: vertical;
    min-height: 96px;
}