/* css/profile.css */

.profile-header { 
    text-align: center; 
    margin-bottom: 30px; 
}

.profile-avatar { 
    width: 120px; 
    height: 120px; 
    border-radius: 50%; 
    object-fit: cover; 
    border: 4px solid var(--primary-color); 
    margin-bottom: 10px; 
    background-color: #e0e0e0; 
}

.profile-username {
    color: #666;
    font-size: 16px;
    margin-top: -10px;
    margin-bottom: 10px;
}

.profile-role { 
    color: #555; 
    font-style: italic; 
    margin-top: -5px; 
    margin-bottom: 10px; 
}

.profile-bonuses { 
    font-size: 1.2rem; 
    font-weight: bold; 
    color: var(--secondary-color); 
}

.profile-section { 
    background-color: #fafafa; 
    border: 1px solid #eee; 
    padding: 20px; 
    border-radius: 8px; 
    margin-top: 20px; 
    text-align: left; 
}

.profile-section h3 { 
    margin-top: 0; 
    border-bottom: 2px solid var(--primary-color); 
    padding-bottom: 10px; 
    margin-bottom: 15px; 
}

.profile-section p { 
    line-height: 1.6; 
}

.profile-section .placeholder { 
    color: #999; 
    font-style: italic; 
}

.profile-form { 
    text-align: left; 
    margin-top: 20px; 
}

#display-name-edit {
    font-weight: bold;
    font-size: 18px;
}

