/* WebSylhet Nagri Converter – v1 */
.wsnc-wrap { max-width: 720px; margin: 24px auto; padding: 0 12px; }
.wsnc-card {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.wsnc-head { margin-bottom: 14px; }
.wsnc-title { font-size: 20px; font-weight: 700; letter-spacing: .2px; }
.wsnc-subtitle { font-size: 14px; opacity: .75; margin-top: 4px; }

.wsnc-label { display:block; font-size: 13px; font-weight: 600; margin: 10px 0 6px; opacity:.85; }
.wsnc-input {
  width: 100%;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 12px;
  padding: 12px 12px;
  font-size: 16px;
  outline: none;
  resize: vertical;
  min-height: 64px;
}
.wsnc-input:focus { border-color: rgba(0,0,0,.35); box-shadow: 0 0 0 4px rgba(0,0,0,.05); }

.wsnc-actions { display:flex; gap: 10px; margin-top: 10px; flex-wrap: wrap; }
.wsnc-btn {
  border: 1px solid rgba(0,0,0,.18);
  background: #f7f7f7;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
}
.wsnc-btn:hover { background: #f0f0f0; }
.wsnc-btn:disabled { opacity: .55; cursor: not-allowed; }

.wsnc-output-wrap {
  margin-top: 14px;
  border: 1px dashed rgba(0,0,0,.18);
  border-radius: 14px;
  padding: 12px;
  background: rgba(0,0,0,.02);
}
.wsnc-output-label { font-size: 13px; font-weight: 700; opacity: .8; margin-bottom: 8px; }
.wsnc-output {
  font-family: "Noto Sans Sylheti Nagri", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 28px;
  line-height: 1.3;
  padding: 6px 4px;
  word-break: break-word;
}
.wsnc-hint { font-size: 12px; opacity: .65; margin-top: 8px; }

.wsnc-msg {
  margin-top: 10px;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0,0,0,.06);
}

@media (max-width: 480px) {
  .wsnc-output { font-size: 24px; }
}


/* v2: intro + sharing */
.wsnc-intro{
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
  opacity: .85;
}
.wsnc-share-row{
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.wsnc-share-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.18);
  background: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}
.wsnc-share-btn:hover{ background: #f6f6f6; }


/* v2.1: layout + select */
.wsnc-row{ display:flex; gap:12px; flex-wrap:wrap; }
.wsnc-col{ flex: 1 1 320px; }
.wsnc-col-small{ flex: 0 1 220px; }
.wsnc-select{
  width: 100%;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 12px;
  padding: 12px 12px;
  font-size: 15px;
  outline: none;
  background: #fff;
}
.wsnc-select:focus { border-color: rgba(0,0,0,.35); box-shadow: 0 0 0 4px rgba(0,0,0,.05); }
