/* ===== Edit profile page — dark theme ===== */

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

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

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

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

.logo-icon { font-size: 48px; color: rgba(255, 255, 255, 0.4); }

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

.form-container {
    padding-top: 30px;
    background: transparent;
    border: none;
    box-shadow: none;
}

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