.overlay {
  filter: drop-shadow(0 0 0.75rem rgb(245, 152, 255));
  border-radius: 25px;
  border: 4px solid rgb(245, 152, 255);
  background: linear-gradient(45deg, #4b1d50 25%, #1e0238 100%);
  padding: 18px;
  width: 360px;
  color: white;
  margin-bottom: 18px;
}

.overlay-body {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.details {
  text-align: left;
  margin-top: 0;
}

.avatar {
  position: relative;
  width: 120px;
  height: 120px;
}

.main-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 5px solid #181b22;
}

.small-avatar {
  width: 32px;
  height: 32px;
  border-radius: 35%;
  position: absolute;
  bottom: -8px;
  right: -8px;
  border: 3px solid #181b22;
}

.details h2 {
  font-size: 15px;
  margin: 0;
}

.details p {
  margin: 2px 0;
  font-size: 13px;
  opacity: 0.8;
}

.username {
  font-size: 13px;
  color: #aaa;
}

.time-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  margin-top: 10px;
  font-family: monospace;
  color: #3ba55d;
}

@media (max-width: 480px) {
  .overlay-body {
    flex-direction: column;
    text-align: center;
  }

  .details {
    text-align: center;
  }

  .time-container {
    justify-content: center;
  }
}
