body {
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: #333;
}

.page-content {
    padding: 20px 16px;
    flex: 1;
}

.profile-pic-edit {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: #f0f0f0;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pic-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-icon {
    font-size: 48px;
}

.edit-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 11px;
    padding: 4px 0;
    text-align: center;
    font-weight: 500;
}

.form-container {
    padding-top: 30px;
}

#profilePicPreview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
