/* Settings Screen */
.settings-box {
    max-width: 800px;
    /* Wider for the form */
    text-align: left;
    max-height: 90vh;
    overflow-y: auto;
}

.settings-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

.form-group input {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
    color: white;
    font-family: var(--font-family);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: var(--primary-color);
}

.divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 10px 0;
}

.settings-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* Scrollbar for settings if needed */
.settings-box::-webkit-scrollbar {
    width: 8px;
}

.settings-box::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.settings-box::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.settings-box::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}