/* Custom Profile Image Styles */
.profile-image-container {
    text-align: center;
    margin: 30px auto;
    max-width: 600px;
    padding: 0 20px;
}

.profile-image-display {
    width: 120px !important;
    height: 120px !important;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid #00A3FF !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 163, 255, 0.2);
}

.profile-image-display img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    display: block !important;
}

.profile-image-display img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50%;
}

.profile-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #00A3FF !important;
    font-size: 12px;
    height: 100%;
}

.profile-image-placeholder i {
    font-size: 32px !important;
    color: #00A3FF !important;
    margin-bottom: 8px;
}

#change-profile-btn {
    background-color: #00A3FF !important;
    color: white !important;
    border: none;
    padding: 12px 24px !important;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px !important;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 163, 255, 0.2);
}

#change-profile-btn:hover {
    background-color: #0093E9 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 163, 255, 0.3);
}