/* SECTION */
.section-box{
  background:#fafafa;
  border:1px solid #eee;
  border-radius:10px;
  padding:18px;
  margin-bottom:18px;
}

/* LABEL */
.label{
  display:block;
  font-size:14px;
  font-weight:600;
  margin-bottom:10px;
}

/* TEXTAREA */
.input-box{
  width:100%;
  padding:12px;
  border:1px solid #ccc;
  border-radius:6px;
  box-sizing:border-box;
  min-height:120px;
  resize:vertical;
}

/* BUTTON */
.btns{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top:15px;
}

.app{
  padding:12px 20px;
  background:linear-gradient(135deg,#0a3d62,#07517d);
  color:#fff;
  border:none;
  border-radius:4px;
  cursor:pointer;
}

/* RESULT BOX */
.result-box{
  margin-top:20px;
  background:#fafafa;
  border:1px solid #ddd;
  border-radius:8px;
  padding:15px;
  min-height:250px;
}

/* WORD CLOUD */
.cloud{
  position:relative;
  width:100%;
  min-height:220px;
  overflow:hidden;
}

.word{
  position:absolute;
  font-weight:700;
  color:#0a3d62;
  white-space:nowrap;
  animation:fade .3s ease-in;
}

/* LOADER */
.loader{
  text-align:center;
  animation:pulse 1s infinite;
  padding:40px 0;
  color:#666;
}

@keyframes pulse{
  0%{opacity:.3}
  50%{opacity:1}
  100%{opacity:.3}
}

@keyframes fade{
  from{
    opacity:0;
    transform:scale(.8);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}