.system-settings {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.settings-header {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.settings-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.settings-item {
    border-top: 1px solid rgba(15, 118, 106, 0.12);
    padding-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.settings-item:first-child {
    border-top: none;
    padding-top: 0;
}

.settings-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.settings-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.note {
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.note.error {
    border-color: rgba(244, 63, 94, 0.55);
    color: #b91c1c;
    background: rgba(244, 63, 94, 0.08);
}

.note.success {
    border-color: rgba(16, 185, 129, 0.55);
    color: #065f46;
    background: rgba(16, 185, 129, 0.08);
}

.system-settings .field input,
.system-settings .field select {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
    border: 1px solid rgba(15, 118, 106, 0.18);
    background: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    color: #0f172a;
}

.system-settings .field select:focus,
.system-settings .field select:active,
.system-settings .field select:focus-visible {
    color: #0f172a;
}

.system-settings .field select option {
    color: #0f172a;
}

.system-settings .field select option:checked {
    color: #0f172a;
}

.system-settings .field input:focus,
.system-settings .field select:focus {
    outline: none;
    border-color: rgba(15, 118, 106, 0.35);
    box-shadow: 0 0 0 2px rgba(15, 118, 106, 0.25);
}

@media (min-width: 900px) {
    .settings-row {
        flex-direction: row;
        align-items: flex-end;
    }

    .settings-row .field {
        flex: 1;
    }

}
