.profile-button {
  background-color: #f5f5f5;
  color: black;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 95px;
  padding: 15px;
  margin-bottom: 10px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  flex-direction: row-reverse;
}

.apple-setting-button {
  background-color: #f5f5f5;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  width: 100%;
  padding: 15px;
  border: none;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid #f1f1f1;
}

.profile-button img {
  width: 65px;
  border-radius: 60px;
  height: auto;
  margin-right: 10px;
  border: 2px solid var(--Color1);
}

.profile-button:hover,
.apple-setting-button:hover {
  background-color: #e6e6e6;
}

.cropped-image {
  border: 2px solid var(--MainColor);
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin: auto;
}

.user-name {
  font-size: 20px;
  font-weight: bold;
  width: fit-content;
  margin: auto;
  margin-top: 10px;
}

.user-email {
  font-size: 15px;
  width: fit-content;
  margin: auto;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737171;
}

@media (prefers-color-scheme: dark) {
  .user-name {
    color: white;
  }
}
