/**
 * App Settings Styles
 */

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

.settings-section {
    transition: all 0.2s ease;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
}

.settings-section:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.settings-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.1);
}

/* Tab styles for settings modals */
.nav-tabs .nav-link {
    color: #495057;
}

.nav-tabs .nav-link.active {
    color: #0d6efd;
    font-weight: 500;
}

/* Form styles */
.settings-form-group {
    margin-bottom: 1.5rem;
}

.settings-form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.settings-form-help {
    color: #6c757d;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}