.overlay {
  position: fixed;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 1rem;

  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);

  z-index: 99999;
}

.modal {
  position: relative;

  width: 100%;
  max-width: 520px;

  max-height: 90vh;
  overflow-y: auto;

  padding: 2rem;

  border-radius: 16px;

  background: #141414;

  border: 1px solid rgba(
    255,
    255,
    255,
    0.06
  );

  &::-webkit-scrollbar {
    width: 6px;
  }

  &::-webkit-scrollbar-thumb {
    background: #2d2d2d;
    border-radius: 999px;
  }
}

.closeButton {
  position: absolute;

  top: 1rem;
  right: 1rem;

  width: 38px;
  height: 38px;

  border: none;

  border-radius: 8px;

  background: transparent;

  color: #fff;

  cursor: pointer;
}

.header {
  margin-bottom: 2rem;

  h2 {
    margin: 0 0 0.4rem;

    color: #fff;

    font-size: 1rem;
    font-weight: 500;
  }

  p {
    margin: 0;

    color: #fff;

    font-size: 0.8rem !important;
  }
}

.section {
  border-top: 1px solid
    rgba(255, 255, 255, 0.06);
}

.row {
  display: flex;

  justify-content: space-between;

  padding: 1rem 0;

  border-bottom: 1px solid
    rgba(255, 255, 255, 0.06);
}

.label {
  color: #8a8a8a;

  font-size: 0.85rem;

  font-weight: 500;
}

.value {
  color: #fff;

  font-size: 0.78rem;

  text-align: right;

  max-width: 60%;

  word-break: break-word;
}

.sectionTitle {
  margin-top: 2rem;
  margin-bottom: 0.75rem;

  color: #fff;

  font-size: 0.85rem;

  font-weight: 600;
}

.success {
  color: #22c55e;
  text-transform: capitalize;
}

.pending {
  color: #f7931a;
  text-transform: capitalize;
}

.note {
  padding: 1rem;

  border-radius: 10px;

  background: #1b1b1b;

  color: #d7d7d7;

  line-height: 1.8;

  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .modal {
    padding: 1.25rem;
  }

  .row {
    flex-direction: column;
    gap: 0.4rem;
  }

  .value {
    max-width: 100%;
    text-align: left;
  }
}