.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.overlay-container {
  background: #fff;
  width: 90%;
  max-width: 600px;
  padding: 30px 40px;
  border-radius: 10px;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.overlay-container .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.overlay-container .content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: #222;
}

.overlay-container .content h3 {
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  margin: 0;
  user-select: none;
}

.overlay-container .paragraph p {
  font-size: 16px;
  line-height: 1.5;
  color: #444;
  margin: 0;
}
