.nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 0.375rem;
    padding: 0.625rem 0.75rem;
    color: #475569;
    font-weight: 500;
}

.nav-link:hover {
    background: #f1f5f9;
    color: #1d4ed8;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    background: #1d4ed8;
    padding: 0.625rem 1rem;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
}

.btn-primary:hover {
    background: #1e40af;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    padding: 0.5rem 0.875rem;
    color: #334155;
    font-size: 0.875rem;
    font-weight: 600;
}

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

.panel {
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    background: #ffffff;
    box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem;
}

.panel-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.section-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
}

.section-subtitle {
    margin-top: 0.25rem;
    color: #64748b;
    font-size: 0.875rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-success {
    background: #dcfce7;
    color: #166534;
}

.badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.badge-neutral {
    background: #e2e8f0;
    color: #334155;
}

.help-step {
    display: flex;
    gap: 1rem;
}

.help-step-number {
    display: flex;
    width: 2rem;
    height: 2rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-weight: 700;
}

.help-step-title {
    font-weight: 700;
    color: #0f172a;
}

.help-step-text {
    margin-top: 0.25rem;
    color: #475569;
    font-size: 0.875rem;
    line-height: 1.5;
}

@media (max-width: 1023px) {
    [data-sidebar].is-open {
        display: block;
    }
}
