.dash-shell {
    min-height: 100vh;
    background: #f1f5f9;
}

.dash-header {
    background: #1e3a8a;
    color: #fff;
    padding: 1.25rem 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.dash-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.dash-main {
    padding: 1.5rem;
}

.dash-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dash-card {
    text-align: left;
    border-radius: 0.5rem;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    font: inherit;
}

.dash-card:hover {
    border-color: #bfdbfe;
}

.dash-card-active {
    border-color: #1e3a8a;
    box-shadow: 0 0 0 1px #1e3a8a;
}

.dash-card-label {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
}

.dash-card-value {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e3a8a;
}

.dash-panel {
    background: #fff;
    border-radius: 0.5rem;
    padding: 1rem 1.25rem 1.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.dash-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dash-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dash-field-label {
    font-size: 0.75rem;
    color: #64748b;
}

.dash-input {
    border: 1px solid #cbd5e1;
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

.dash-panel-title {
    margin: 0 0 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e3a8a;
}

.dash-muted {
    color: #334155;
}

.dash-error {
    color: #b91c1c;
}

.dash-table-wrap {
    overflow-x: auto;
}

.dash-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.dash-table th,
.dash-table td {
    border: 1px solid #e2e8f0;
    padding: 0.5rem 0.75rem;
    text-align: left;
}

.dash-table thead {
    background: #f8fafc;
}

.text-danger {
    color: #b91c1c;
}
