
body{
  margin: 0;
  position: relative;
}
.ct-timer-bar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: .5rem;
  background: #fff;
  color: #111;
  font-family: system-ui, Arial, sans-serif;
  font-size: 16px;
  gap: 8px;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  user-select: none;
}

.ct-timer-bar .ct-label {
  font-weight: 700;
  color: #111;

}

.ct-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #111;
}

.ct-digits {
  display: flex;
  align-items: center;
  gap: 2px;
}

.ct-digit {
  background: #111;
  color: #fff;
  padding: 2px 4px;
  border-radius: 6px;
  min-width: 20px;
  text-align: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  font-weight: 400;
  font-family: "Share Tech Mono", monospace;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.ct-sep {
  font-weight: bold;
  font-size: 16px;
  margin: 0 2px;
}

.ct-digit.swipe-out {
  transform: translateY(-100%);
  opacity: 0;
}
.ct-digit.swipe-in {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 600px) {
  .ct-timer-bar {
    flex-direction: column !important;
    text-align: center;
  }
}

.ct-digit.changing {
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
