/* Digital Clock - Minimalist Dark Theme */

/* Container */
.clock-app-container {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

/* Header */

/* Time Display */
.time-display {
  font-size: 6rem;
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.colon {
  color: var(--text-muted);
  margin: 0 10px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* AM/PM Indicator */
.ampm {
  font-size: 1.5rem;
  margin-left: 10px;
  color: var(--text-muted);
  font-weight: 500;
  align-self: flex-end;
  margin-bottom: 15px;
}

/* Controls */
.controls {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.toggle-btn {
  background: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.toggle-btn:hover {
  border-color: var(--text-secondary);
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
}

/* Date & Timezone */
.date-container {
  text-align: center;
  margin-top: 1rem;
}

.date-text {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 5px;
  font-weight: 500;
}

.timezone-text {
  font-size: 1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mobile Media Queries */
@media (max-width: 640px) {
  .time-display {
    font-size: 3.5rem;
  }
}
