/* World Clocks Styling */
#world-clocks {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  margin-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.world-clock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.clock-time {
  font-family: 'Courier New', Courier, monospace;
  font-size: 16px;
  font-weight: bold;
  color: #2bbc8a;
}

.clock-label {
  font-size: 10px;
  font-weight: 500;
  text-align: center;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  #world-clocks {
    gap: 10px;
    padding: 12px 0;
  }

  .clock-time {
    font-size: 14px;
  }

  .clock-label {
    font-size: 9px;
  }
}
