/* Settings page styles */
.settings-container {
    min-height: calc(100vh - 80px);
    padding: 40px 20px;
}

.settings-header {
    text-align: center;
    margin-bottom: 50px;
}

.settings-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-light);
}

.settings-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.settings-content {
    max-width: 800px;
    margin: 0 auto;
}

.settings-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-light);
}

.setting-item {
    margin-bottom: 25px;
}

.setting-item:last-child {
    margin-bottom: 0;
}

.setting-item label {
    display: block;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 10px;
}

.setting-input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.setting-input[type="text"],
.setting-input[type="number"] {
    cursor: text;
}

.setting-input[type="range"] {
    cursor: pointer;
    height: 8px;
    padding: 0;
}

#temperatureValue {
    display: inline-block;
    margin-left: 10px;
    color: #667eea;
    font-weight: 600;
    min-width: 40px;
}

.setting-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.setting-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 8px;
    line-height: 1.6;
}

.setting-description.warning {
    color: #f5576c;
}

/* Toggle Switch */
.toggle-label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-light);
}

.toggle-input {
    position: relative;
    width: 50px;
    height: 26px;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.toggle-input:checked {
    background: var(--primary-gradient);
}

.toggle-input::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    top: 3px;
    left: 3px;
    transition: all 0.3s ease;
}

.toggle-input:checked::before {
    left: 27px;
}

.toggle-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-danger {
    padding: 12px 24px;
    background: rgba(245, 87, 108, 0.2);
    border: 1px solid #f5576c;
    border-radius: 10px;
    color: #f5576c;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 1rem;
}

.btn-danger:hover {
    background: rgba(245, 87, 108, 0.3);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .settings-header h1 {
        font-size: 2rem;
    }
    
    .settings-section {
        padding: 20px;
    }
}

