/* GRID LAYOUT */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
  gap: 15px;
}

/* TEXTAREA */
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  resize: none;
  box-sizing: border-box;
}

/* BUTTON */
.btn {
  padding: 12px 20px;
  margin-top: 10px;
  border: none;
  background: linear-gradient(135deg, #0a3d62, #07517d);
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  /* width: 100%; */
}

/* RESULT BOX */
.result-box {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  background: #fafafa;
  min-height: 120px;
  text-align: center;
  position: relative;
}

/* BIG RESULT TEXT */
.result {
  font-size: 32px;
  font-weight: bold;
  background: linear-gradient(90deg,#6EE7B7,#3B82F6,#9333EA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 20px;
}

/* COPY BUTTON */
.copy-btn {
  margin-top: 15px;
  padding: 6px 12px;
  font-size: 12px;
  border: none;
  background: #0a3d62;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

/* LOADER */
.loader {
  font-size: 16px;
  color: #555;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {opacity:0.3;}
  50% {opacity:1;}
  100% {opacity:0.3;}
}