#editForm {
    margin: 0px;
    font-family: Arial, sans-serif;
    background: #26262654;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100vw;
}

#editForm .form-container {
    background: linear-gradient(to bottom right, #ffefba, #d4fc79);
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 350px;
    padding: 20px;
    position: fixed;
    margin-bottom: 100%;
    top: 20px;
    overflow-y: scroll;
    z-index: 1;
    height: 90vh;
}

#editForm .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
}

#editForm .profile-pic {
    margin-bottom: 15px;
}

#editForm .profile-pic img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

#editForm h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #000;
}

#editForm form input,
.hero-text form input {
    box-sizing: border-box;
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#editForm form button,
.hero-text button {
    width: 100%;
    padding: 10px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

#editForm form button:hover {
    background: #45a049;
}