body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 15px;
}

/* TOP */
.top-section {
  background: linear-gradient(180deg, #6630C6 0%, #330F95 100%);;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  color: white;
}
h1{
	 font-size: 45px !important;
    font-weight: 700 !important;
  color: #fff;
  font-size: 40px;
}

.top-section input {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
}

/* PREVIEW LIST */
.preview-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* BOX */
.preview-box {
	  position: relative;
  background: white;
  padding: 20px;
  padding-top: 28px;
  border-radius: 10px;

  height: auto;          /* ✅ allow height to grow */
  overflow: visible;
}
.preview-box.scroll {
  max-height: 200px;
  overflow-y: auto;
}

/* TEXT */
.preview {
  font-size: 22px;
  line-height: 1.4;

  white-space: normal;        /* ✅ allow wrapping */
  word-break: break-word;     /* ✅ break long words */
  overflow-wrap: anywhere;
	padding-right: 40px;
}

/* COPY */
.copy-btn {
	position: absolute;
  top: 8px;
  right: 10px;
  cursor: pointer;
  font-size: 32px;
     color: #000000;
	font-weight:900;
  opacity: 0.7;
  transition: 0.2s;
/*   position: absolute;
  top: 10px;
  right: 12px;
  cursor: pointer;
  opacity: 0.7; */
}

.copy-btn:hover {
  color: #6a5cff;
  opacity: 1;
}

/* MOBILE */
@media (max-width: 768px) {
  .top-section h1 {
    font-size: 28px;
  }
}