.utc-bar {
  background: #111;
  border-bottom: 1px solid #333;
  padding: 10px 0;
  overflow: hidden;
  color: #fff;
}

.utc-bar-inner {
  display: flex;
  gap: 40px;
  animation: marquee 60s linear infinite;
  width: max-content;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.utc-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: monospace;
  font-size: 14px;
  white-space: nowrap;
}

/* ✅ FLAG IMAGE SIZE */
.ticker-flag {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 3px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.utc-bar-item .city {
  font-weight: bold;
  color: rgb(255, 255, 255);
}

.utc-bar-item .time {
  color: #ff4060;
}


.utc-bar-item {
  flex: 0 0 auto;
  white-space: nowrap;
}