.profileSection { display: flex; flex-direction: column; width: 100%; } .profilePicture { display: flex; align-items: center; margin-bottom: 20px; } .profilePicture img { border-radius: 50%; width: 60px; height: 60px; object-fit: cover; object-position: center; margin-right: 20px; } .changeBtn, .deleteBtn { background-color: #007bff; border: none; padding: 8px 12px; color: #fff; margin-right: 10px; border-radius: 4px; cursor: pointer; } .deleteBtn { background-color: #ff5b5b; } .formGroup { margin-bottom: 15px; } .formGroup label { display: block; margin-bottom: 5px; font-size: 14px; color: #555; } .formGroup input, .formGroup textarea { width: 90%; padding: 8px; border: 1px solid #e0e0e0; border-radius: 4px; font-size: 14px; } .formGroup input[disabled] { background-color: #f7f7f7; } .addressDetails { margin-top: 15px; display: flex; justify-content: space-between; align-items: flex-start; width: 95%; } .addressNumber, .addressFloor { display: inline-block; width: 48%; } .addressFloor { padding-right: 6px; } .note { font-size: 12px; color: #888; margin-top: 5px; } .profileForm { display: flex; flex-direction: column; justify-content: space-between; height: 59vh; position: relative; } .buttonContainer { display: flex; justify-content: flex-end; margin-top: auto; } .saveBtn { padding: 10px 20px; background-color: #FFA550; color: #fff; border: none; border-radius: 7.5px; cursor: pointer; transition: background-color 0.3s ease; margin-right: 70px; } .saveBtn:hover { background-color: #e59400; } @media (max-width: 768px) { .profilePicture { flex-direction: column; align-items: center; text-align: center; } .profilePicture img { margin-right: 0; margin-bottom: 10px; } .addressDetails { flex-direction: column; width: 100%; } .addressNumber, .addressFloor { width: 100%; padding-right: 0; } .buttonContainer { justify-content: center; } .saveBtn { width: 100%; margin-right: 0; } }