
/* ===============================================
   Settings Screen Styles
   =============================================== */
.settings-screen {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.settings-screen.hidden {
    display: none;
}

.settings-screen .screen-title-bar {
    padding: 20px;
    background: transparent;
    border-bottom: none;
}

.settings-screen .screen-title {
    font-size: 1.8em;
    font-weight: 700;
}

.settings-screen .screen-scroll-content {
    padding: 20px;
}

.settings-content {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.settings-section {
    background: rgba(102, 126, 234, 0.05);
    border-radius: 16px;
    padding: 24px;
}

[data-theme="light"] .settings-section {
    background: rgba(0, 0, 0, 0.03);
}

.section-title {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-info {
    flex: 1;
}

.setting-label {
    font-size: 1em;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 4px;
}

.setting-description {
    font-size: 0.85em;
    color: var(--text-secondary);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: 0.3s;
    border-radius: 28px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background: linear-gradient(45deg, #667eea, #764ba2);
}

input:checked + .toggle-slider:before {
    transform: translateX(22px);
}

input:disabled + .toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.about-info {
    color: var(--text-color);
}

.about-info p {
    margin: 8px 0;
    line-height: 1.5;
}

.about-info strong {
    color: var(--text-color);
}

.about-description {
    margin-top: 12px;
    color: var(--text-secondary);
    font-size: 0.95em;
}

.about-credits {
    margin-top: 16px;
    font-size: 0.9em;
    color: var(--text-secondary);
}

.deorlabs-highlight {
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    letter-spacing: 0.5px;
}

.settings-actions {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

@media (max-width: 600px) {
    .settings-content {
        padding: 15px;
        gap: 15px;
    }
    
    .settings-section {
        padding: 15px;
    }
    
    .setting-item {
        padding: 12px 0;
    }
}

