.countdown-container {
  display: flex;
  align-items: flex-end;
  background-color: #2e2e2e;
  padding: 10px 20px; /* Smaller padding */
  border-radius: 3px; /* Smaller border radius */
  position: fixed; /* Fixed position to stay in the viewport */
  bottom: 20px;
  right: 20px;
  color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 1000; /* Ensure it's above other content */
  transform: scale(0.7); /* Reduce the size */
  transform-origin: bottom right; /* Scale from the bottom right */
}

.starts-in-label {
  background-color: #e30613;
  color: white;
  font-weight: bold;
  padding: 5px 10px; /* Smaller padding */
  font-size: 0.8em; /* Smaller font size */
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%) translateX(-10px) scale(0.7);
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
}

.countdown-timer {
  display: flex;
  margin-left: 70px; /* Adjusted margin */
  align-items: flex-end;
}

.time-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 5px; /* Smaller margin */
}

.time-value {
  font-size: 1.5em; /* Smaller font size */
  font-weight: bold;
  line-height: 1;
}

.time-unit {
  font-size: 0.6em; /* Smaller font size */
  text-transform: uppercase;
  margin-top: 3px;
  color: #bbb;
}

.tissot-logo {
  position: absolute;
  bottom: 5px;
  left: 5px;
}

.utd-event-name {
  margin-top: 8px;
  font-weight: bold;
  font-size: 0.85em;
  word-break: break-word;
  white-space: normal;
  line-height: 1.4;
  text-align: justify;
  width: 100%;
}

.utd-link-wrapper {
  text-decoration: none;
  cursor: pointer;
}
