.utc-countdown-wrapper {
  display: inline-block;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  line-height: 1.2;
  max-width: 100%;
  box-sizing: border-box;
}

.utc-countdown-label {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #222;
}

.utc-countdown-timer {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #111;
  white-space: nowrap;
}

/* Small-screen friendliness */
@media (max-width: 480px) {
  .utc-countdown-wrapper {
    padding: 12px 14px;
  }

  .utc-countdown-timer {
    font-size: 85%; /* slightly smaller text on small screens */
    white-space: normal; /* allow wrapping within the box */
    word-break: break-word;
    text-align: center;
  }
}
