/* ============================================
   SETTINGS ENHANCEMENTS
   Version: 2.24
   Date: January 14, 2026
   ============================================ */

/* Section Description */
.section-description {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 4px solid #667eea;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #1e40af;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.5;
}

.section-description i {
    font-size: 16px;
    color: #667eea;
    flex-shrink: 0;
}

/* Dark Theme */
body.dark-theme .section-description {
    background: linear-gradient(135deg, #1e3a5f 0%, #1e40af 100%);
    border-left-color: #818cf8;
    color: #bfdbfe;
}

body.dark-theme .section-description i {
    color: #818cf8;
}

/* Enhanced Save Button */
.save-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.save-btn:active {
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .section-description {
        font-size: 13px;
        padding: 10px 14px;
    }
    
    .section-description i {
        font-size: 14px;
    }
}
