.settings-section {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.settings-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.settings-card h2 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.settings-group {
    margin-bottom: 20px;
}

.settings-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.settings-label {
    width: 140px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.settings-value {
    flex: 1;
    min-width: 200px;
}

.settings-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    transition: all 0.2s;
}

.settings-input:focus {
    outline: none;
    border-color: #0066CC;
    box-shadow: 0 0 0 2px rgba(0,102,204,0.1);
}

.settings-note {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
    margin-left: 150px;
}

.date-range, .time-range {
    display: flex;
    gap: 12px;
    align-items: center;
}

.date-range input, .time-range select {
    flex: 1;
    min-width: 120px;
}

/* Уведомления */
.notification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.notification-item label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.notification-item input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #0066CC;
}

/* Кнопка сохранения */
.btn-save {
    width: 100%;
    padding: 14px;
    background: #0066CC;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 20px;
}

.btn-save:hover {
    background: #0052a3;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .settings-section {
        padding: 10px;
    }
    
    .settings-card {
        padding: 15px;
    }
    
    .settings-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .settings-label {
        width: auto;
    }
    
    .settings-note {
        margin-left: 0;
    }
    
    .date-range, .time-range {
        flex-direction: column;
        width: 100%;
    }
    
    .date-range input, .time-range select {
        width: 100%;
    }
    
    .notification-item {
        flex-direction: row;
        justify-content: space-between;
    }
}