/* Settings Feature Styles */
/* Styles specific to the settings feature */

.settings-container {
    max-width: 500px;
    margin: 0 auto;
}

.settings-container h3 {
    color: #4a5568;
    margin-bottom: 25px;
    font-weight: 400;
    font-size: 1.5em;
}

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

.settings-group label {
    display: block;
    font-size: 1em;
    color: #4a5568;
    font-weight: 500;
    margin-bottom: 10px;
}

.settings-select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    color: #2d3748;
    font-size: 16px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.settings-select:hover {
    border-color: #cbd5e0;
}

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

.settings-description {
    margin-top: 8px;
    font-size: 0.9em;
    color: #718096;
    line-height: 1.5;
}

.settings-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 1em;
    color: #4a5568;
    font-weight: 500;
}

.settings-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #667eea;
}

.settings-danger-zone {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #fed7d7;
}

.settings-danger-zone h4 {
    color: #742a2a;
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 15px;
}

.btn-danger {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #e53e3e;
    color: white;
    width: 100%;
    max-width: 300px;
}

.btn-danger:hover {
    background: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 62, 62, 0.4);
}

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

@media (min-width: 768px) {
    .settings-container h3 {
        font-size: 1.8em;
    }
}