/* compteur.css */
.op-compteur-card{
  max-width:800px;
  margin:20px auto;
  background:#fff;
  padding:24px;
  border-radius:10px;
  box-shadow:0 6px 18px rgba(20,20,40,0.06);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}
.op-compteur-card h2{
  text-align:center;
  margin-bottom:8px;
}
.op-compteur-sub{
  text-align:center;
  color:#7b7b8a;
  margin-bottom:16px;
}

textarea#op-compteur-text{
  width:100%;
  min-height:150px;
  padding:12px;
  border:1px solid #e5e7eb;
  border-radius:8px;
  font-size:15px;
  line-height:1.5;
  resize:vertical;
}

.op-compteur-resultats{
  display:flex;
  justify-content:center;
  gap:40px;
  margin-top:20px;
}

.op-box{
  background:#f9fafb;
  border:1px solid #e5e7eb;
  border-radius:10px;
  padding:16px 24px;
  text-align:center;
  min-width:120px;
  box-shadow:0 2px 6px rgba(0,0,0,0.05);
}
.op-box span{
  display:block;
  font-size:28px;
  font-weight:700;
  margin-bottom:6px;
  color:#ff7a59;
}
.op-box label{
  font-size:14px;
  color:#6b7280;
}

.op-compteur-options{
  display: flex;
  justify-content: center;
}

.op-toggle-btn {
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: "Inter", Sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #4B5563;
    background: #f1f3f7;
}

/* Style quand coché (inspiré de .op-tab.active) */
#op-ignore-spaces:checked + .op-toggle-btn {
    background: linear-gradient(90deg, #ff7a59, #ffb24d);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(255, 122, 89, 0.3);
}   