.nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    transition: background 0.15s;
}
.nav-link:hover { background: rgba(21, 128, 61, 0.8); }
.nav-link.active {
    background: #15803d;
    color: #fff;
    font-weight: 500;
}
.label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
}
.dark .label { color: #cbd5e1; }
.input {
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid #cbd5e1;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}
.input:focus {
    outline: none;
    border-color: #16a34a;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}
.dark .input {
    border-color: #475569;
    background: #334155;
    color: #f1f5f9;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: #16a34a;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    transition: background 0.15s;
}
.btn-primary:hover { background: #15803d; }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    border: 1px solid #cbd5e1;
    background: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
}
.btn-secondary:hover { background: #f8fafc; }
