.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.overlay.hidden {
  display: none;
}

.overlay-card {
  width: 80vw;
  max-width: 75%;
  max-height: 90%;
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  overflow: auto;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

@media (max-width: 576px) {
  .overlay-card {
    max-width: 85%;
  }
}

.overlay-title {
  font-size: 1.4rem;
}

.overlay-subtitle {
  font-size: 1.2rem;
  color: #383838;
  padding: 0 1rem;
}

.overlay-comments {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
