.tasbeeh-counter {
  --bg: #f7f7fb;
  --border: #e4e4ee;
  --text: #111827;
  --accent: #2563eb;
  --accent-2: #ef4444;

  display: inline-block;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
  min-width: 240px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  text-align: center;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.tasbeeh-display {
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1;
}

.tasbeeh-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.tasbeeh-buttons button {
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.tasbeeh-increment {
  background: var(--accent);
  color: #fff;
}

.tasbeeh-reset {
  background: var(--accent-2);
  color: #fff;
}

.tasbeeh-buttons button:active {
  transform: translateY(1px);
}