.container--profile {
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  overflow-y: auto;
  padding-bottom: 180px;
}

/* profile card */

.profile-card {
  display: flex;
  flex-direction: column;
  background-color: rgba(115, 115, 115, 0.238);
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  gap: 3px;
}

.profile-button {
  display: flex;
  cursor: pointer;
  z-index: 10;
  width: 100%;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 10px;
  padding: 5px;
  background-color: rgba(255, 0, 0, 0);
  justify-self: start;
  transition:
    background-color 0.2s ease,
    transform 0.15s ease;
}

.profile-button:hover {
  background-color: #9797972e;
}

.profile-button:active {
  transform: scale(0.99);
}

.profile-button-text {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  overflow: hidden;
}

.profile-button-text-first {
  font-size: 16px;
  text-align: start;
  color: white;
}

.profile-button-text-second {
  font-size: 12px;
  text-align: start;
  color: rgba(255, 255, 255, 0.415);
}

.profile-button-icon {
  width: 24px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.081);
  padding: 10px;
  border-radius: 10px;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  box-sizing: content-box;
}

/* profile-button-card */

.profile-button-card {
  display: flex;
  z-index: 10;
  position: relative;
  cursor: pointer;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 3px;
  background-color: rgba(181, 181, 181, 0.238);
  width: 100%;
  height: 3.7rem;
  border-radius: 50px;
  border: none;
  gap: 10px;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-click 2s ease-out;
  pointer-events: none;
}

@keyframes ripple-click {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.profile-button-card-avatar {
  width: 48px;
  height: 48px;
  background-color: black;
  padding: 3px;
  border-radius: 50px;
}

.profile-button-card-text {
  display: flex;
  align-items: start;
  flex-direction: column;
  color: white;
  gap: 3px;
}

.profile-button-card-text-id {
  color: rgba(180, 180, 180, 0.871);
}

.profile-button-card-copy, 
.profile-button-card-done {
  width: 50px;
  height: 50px;
  margin-left: auto;
  background-color: rgba(132, 132, 132, 0.07);
  filter: brightness(0) invert(1);
  opacity: 70%;
  padding: 14px;
  border-radius: 30px;
}

/* profile fixed link */

.profile-fixed-link {
  display: flex;
  cursor: pointer;
  opacity: 90%;
  flex-direction: row;
  position: fixed;
  bottom: 100px;
  z-index: 100;
  border: none;
  border-radius: 20px;
  padding: 10px;
  left: 20px;
  right: 20px;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.ripple-dark-effect .ripple {
  background: rgba(0, 0, 0, 0.2);
}

.profile-fixed-link-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 3px;
  min-width: 0;
}

.profile-fixed-link-link {
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
}

.profile-fixed-link-label {
  opacity: 70%;
  font-size: 12px;
}


.profile-fixed-link-copy, 
.profile-fixed-link-done {
  width: 24px;
  height: 24px;
  box-sizing: content-box;
  opacity: 0.7;
  background-color: rgba(0, 0, 0, 0.155);
  padding: 12px;
  border-radius: 10px;
}
