/* Počítadlo znaků / slov */
.tc-wrap{padding:1.2rem;}
.tc-header{display:flex;justify-content:space-between;gap:1rem;align-items:flex-start;margin-bottom:1rem;}

.tc-grid{display:grid;grid-template-columns:1.35fr .95fr;gap:1rem;align-items:start;}

.tc-label{display:block;font-weight:700;margin:.2rem 0 .5rem;}
.tc-input{
  width:100%;
  min-height:260px;
  resize:vertical;
  padding:1rem;
  border-radius:16px;
  border:1px solid rgba(127,127,127,.25);
  background:rgba(255,255,255,.02);
  outline:none;
}
.tc-input:focus{border-color:rgba(127,127,127,.5); box-shadow:0 0 0 4px rgba(127,127,127,.15);}

.tc-actions{display:flex;gap:.6rem;flex-wrap:wrap;margin-top:.75rem;}

.tc-panel-card{
  padding:1rem;
  border-radius:16px;
  border:1px solid rgba(127,127,127,.20);
  background:rgba(255,255,255,.02);
}
.tc-panel-title{margin:.1rem 0 1rem;}

.tc-stats{display:grid;grid-template-columns:1fr 1fr;gap:.75rem;}
.tc-stat{padding:.8rem;border-radius:14px;border:1px solid rgba(127,127,127,.18);background:rgba(0,0,0,.06);}
.tc-stat-value{font-size:1.55rem;font-weight:800;line-height:1.15;margin-top:.25rem;word-break:break-word;}

.tc-mini{margin-top:1rem;}
.tc-mini-title{font-weight:800;margin:0 0 .5rem;}

.tc-toast{margin-top:.75rem;min-height:1.1rem;font-weight:700;opacity:.92;}
.tc-hint{margin-top:.75rem;}

@media (max-width: 900px){
  .tc-grid{grid-template-columns:1fr;}
  .tc-stat-value{font-size:1.35rem;}
}
