.section-box{
  background:#fafafa;
  border:1px solid #eee;
  padding:18px;
  border-radius:10px;
  margin-bottom:20px;
}

textarea{
  width:100%;
  min-height:120px;
  padding:12px;
  border:1px solid #ccc;
  border-radius:6px;
}

.btns{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top:15px;
}

.app{
  padding:12px 20px;
  background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
  color:#fff;
  border:none;
  border-radius:6px;
  cursor:pointer;
}

.gray{background:#444;}

.results{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:15px;
}

.card1{
  background:#fff;
  border:1px solid #ddd;
  border-radius:12px;
  padding:16px;
  position:relative;
}

.preview{
  font-size:22px;
  min-height:80px;
  word-break:break-word;
  white-space:pre-wrap;
}

.copy{
  position:absolute;
  top:10px;
  right:10px;
  border:none;
  padding:6px 10px;
  border-radius:6px;
  cursor:pointer;
  background:#eee;
}

.copy:hover{background:#ddd;}

.name{
  margin-top:10px;
  font-size:13px;
  color:#666;
}


@media(max-width:500px){

  .section-box{
    padding:0px;
    background-color: transparent;
    border:none;
  }

}