/* =========================
   SETTINGS PAGE SPECIFIC STYLES
   ========================= */

.settings-container {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    padding: 2rem 0;
    border-radius: 1rem;
}

.settings-content {
    max-width: 800px;
}

.settings-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.settings-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #086973, #0891b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.settings-title i {
    color: #086973;
    margin-right: 1rem;
    -webkit-text-fill-color: #086973;
}

/* User Avatar Styles */
.user-avatar {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #086973, #0891b2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar i {
    font-size: 1.5rem;
    color: white;
}

/* Mobile Responsive Enhancements */
@media (max-width: 576px) {
    .settings-container {
        padding: 1rem 0;
        border-radius: 0;
    }
    
    .settings-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .settings-header {
        margin-bottom: 2rem;
        padding: 1rem 0;
    }
    
    .settings-title {
        font-size: 2rem;
    }
    
    .user-avatar {
        width: 3rem;
        height: 3rem;
    }
    
    .user-avatar i {
        font-size: 1.5rem;
    }
    
    /* Mobile button layout */
    .d-flex.justify-content-end {
        flex-direction: column-reverse !important;
        gap: 0.75rem !important;
    }
    
    .d-flex.justify-content-end .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .settings-title {
        font-size: 2.25rem;
    }
    
    .settings-header {
        margin-bottom: 2.5rem;
    }
    
    /* Stack buttons on smaller tablets */
    .d-flex.justify-content-end {
        flex-direction: column-reverse;
        gap: 1rem;
    }
    
    .d-flex.justify-content-end .btn {
        width: 100%;
    }
}
