#updateUsernameButton,
#updateEmailButton,
#updatePasswordButton {
  border-radius: 50px;
  border: 2px solid;
  margin: 5px;
  width: 184.375px !important;
  height: 48px;
  font-weight: bold;
}

/* Flex container for label and button */
.profile-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

/* Responsive behavior */
@media (max-width: 576px) {
  .profile-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-row button {
    width: 100% !important;
    margin-top: 10px;
  }
}
