.profile-body {
  background-color: var(--color-background);
  color: #535353;
  height: 1000px;
  overflow: scroll;
}

.profile-container {
  width: 95%;
  margin: 0 auto;
  padding: 20px;
  overflow: auto;
}

.profile-user-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-container);
  padding: 10px;
  border-radius: 8px;
  gap: 20px;
}

.profile-user-info-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: auto;
}

.profile-user-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.profile-user-address {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.profile-container-title {
  color: var(--color-titles-container);
  margin-bottom: 20px;
  font-size: 22px;
}

.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.popup-profile {
  display: none;
  position: fixed;
  z-index: 3;
  left: 50%;
  top: 80px;
  transform: translateX(-50%);
  width: 250px; /* Reducido el ancho */
  background-color: #dddddd;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
}

.close-edit-profile {
  color: #aaa;
  float: right;
  font-size: 20px; /* Reducido el tamaño de la fuente */
  font-weight: bold;
}

.close-edit-profile:hover,
.close-edit-profile:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.popup-content-profile {
  position: relative;
}

.close-edit-profile, .close-confirm-changes {
  position: absolute;
  top: 1px;
  right: 10px;
  font-size: 16px; /* Reducido el tamaño de la fuente */
  cursor: pointer;
}

.form-group-profile {
  margin-bottom: 10px; /* Reducido el margen inferior */
}

.form-group-profile label {
  display: block;
  margin-bottom: 3px; /* Reducido el margen inferior */
  color: var(--color-titles-container);
  font-size: 12px; /* Reducido el tamaño de la fuente */
}

.form-group-profile input {
  width: calc(100% - 10px); /* Reducido el ancho */
  padding: 5px; /* Reducido el padding */
  border: none;
  border-radius: 5px;
  background-color: #cccccc;
  color: #131313;
  font-size: 12px; /* Reducido el tamaño de la fuente */
}

@media (min-width: 768px) {
  .profile-user-container {
      flex-direction: column;
  }

  .profile-user-info-container {
      display: flex;
      flex-direction: row;
      gap: 150px;
  }

  .popup-profile {
      display: none;
      position: fixed;
      z-index: 3;
      left: 50%;
      top: 65px; /* Ajustado para que aparezca a 80px desde la parte superior */
      transform: translateX(-50%);
      width: 300px; /* Reducido el ancho */
      background-color: #dddddd;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
  }

  .profile-user-info {
      width: 33%;
      display: flex;
      flex-direction: column;
      gap: 7px;
  }

  .profile-user-address {
      width: 33%;
      display: flex;
      flex-direction: column;
      gap: 7px;
  }

  .profile-edit-container {
      width: 33%;
  }
}
