.edit-profile-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 25px;
    background: #fffdf8;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.edit-profile-container h2 {
    text-align: center;
    color: #3b2a1a;
    margin-bottom: 20px;
}

.edit-profile-container label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #5c3a1a;
}

.edit-profile-container input[type="text"],
.edit-profile-container input[type="file"] {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border-radius: 6px;
    border: 1px solid #d4c6b0;
}

.edit-profile-container button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #7a4a2e;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.edit-profile-container button:hover {
    background: #5c351f;
}

.form-buttons {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

#remove-photo-btn {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
}

#remove-photo-btn:hover {
    background-color: #d32f2f;
}
