@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
body { font-family: 'Inter', sans-serif; }

.panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.field {
    width: 100%;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    border-radius: 8px;
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
    outline: none;
}

.field:focus {
    background: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.label {
    display: block;
    margin-bottom: 0.375rem;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 800;
    padding: 0.625rem 0.875rem;
    transition: background-color .16s ease, color .16s ease, border-color .16s ease;
}

.status-dot {
    width: .5rem;
    height: .5rem;
    border-radius: 999px;
    display: inline-block;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    border-radius: 8px;
    border: 1px solid transparent;
    padding: .25rem .5rem;
    font-size: .72rem;
    font-weight: 800;
    white-space: nowrap;
}

.badge-green {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #047857;
}

.badge-amber {
    background: #fffbeb;
    border-color: #fde68a;
    color: #b45309;
}

.badge-red {
    background: #fef2f2;
    border-color: #fecaca;
    color: #b91c1c;
}

.badge-slate {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #475569;
}

.action-card {
    display: flex;
    min-height: 116px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    padding: 1rem;
    transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.action-card:hover {
    border-color: #93c5fd;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transform: translateY(-1px);
}

.action-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #eff6ff;
    color: #1d4ed8;
}

.action-red .action-icon { background: #fef2f2; color: #dc2626; }
.action-amber .action-icon { background: #fffbeb; color: #d97706; }
.action-emerald .action-icon { background: #ecfdf5; color: #059669; }
.action-slate .action-icon { background: #f1f5f9; color: #475569; }

.metric-label {
    color: #64748b;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.metric-value {
    margin-top: .35rem;
    font-size: 1.75rem;
    line-height: 1;
    font-weight: 800;
}

.metric-help {
    margin-top: .35rem;
    color: #64748b;
    font-size: .75rem;
    font-weight: 600;
}

.mobile-nav-item {
    min-height: 4.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    font-size: .68rem;
    font-weight: 800;
}

.mobile-nav-item i {
    font-size: 1rem;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.table-head th {
    padding: .85rem 1rem;
    color: #64748b;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    background: #f8fafc;
}

.table-cell { padding: .95rem 1rem; }

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
