/**
 * Arsvia Auction Timetable Styles
 * Provides styling for the auction countdown elements
 */

.arsvia-auction-timetable {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "League Spartan";
  color: #322d29;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  flex-direction: column;
}

.arsvia-auction-label {
  font-size: 1.6rem;
  font-family: "League Spartan";
  font-weight: 500;
  color: #322d29;
  margin-right: 0;
  white-space: nowrap;
}

.arsvia-auction-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: normal;
  font-size: 1rem;
  color: #333;
  background: transparent;
  padding: 0;
  border: none;
  min-width: auto;
  text-align: left;
}

/* Countdown boxes */
.arsvia-countdown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 7.2rem;
  height: 7.2rem;
  background: #efe9e1;
  border: 1px solid #d8d3cc;
  padding: 8px;
  box-sizing: border-box;
}

.homepage-countdown .arsvia-countdown-box {
  background: #355b58;
  border: 1px solid #355b58;
}

.homepage-countdown .arsvia-countdown-number {
  color: #efe9e1;
}

.arsvia-countdown-number {
  font-size: 2rem;
  font-family: "League Spartan";
  font-weight: 700;
  color: #322d29;
  line-height: 1;
  margin-bottom: 4px;
}

.arsvia-countdown-label {
  font-size: 14px;
  font-weight: 500;
  color: #322d29;
  font-family: "League Spartan";
  text-align: center;
  line-height: 1.2;
}

.homepage-countdown .arsvia-countdown-label {
  color: #efe9e1;
}

/* Separator dots */
.arsvia-countdown-separator {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.arsvia-countdown-dot {
  width: 6.5px;
  height: 6.5px;
  background: #efe9e1;
  border: 1px solid #d8d3cc;
  border-radius: 50%;
}

.homepage-countdown .arsvia-countdown-dot {
  background: #355b58;
  border: 1px solid #355b58;
}

/* Done state */
.arsvia-auction-timetable.arsvia-auction-done .arsvia-countdown-box {
  background: #f8d7da;
  border-color: #f5c6cb;
}

.arsvia-auction-timetable.arsvia-auction-done .arsvia-countdown-number,
.arsvia-auction-timetable.arsvia-auction-done .arsvia-countdown-label {
  color: #dc3545;
}

/* Responsive design */
@media (max-width: 768px) {
  .arsvia-auction-timetable {
    gap: 8px;
  }

  .arsvia-auction-label {
    font-size: 20px;
  }

  .arsvia-countdown-box {
    width: 70px;
    height: 70px;
  }

  .arsvia-countdown-number {
    font-size: 28px;
  }

  .arsvia-countdown-label {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .arsvia-auction-timetable {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
  }

  .arsvia-auction-label {
    font-size: 18px;
  }

  .arsvia-auction-text {
    gap: 8px;
  }

  .arsvia-countdown-box {
    width: 60px;
    height: 60px;
  }

  .arsvia-countdown-number {
    font-size: 24px;
  }

  .arsvia-countdown-label {
    font-size: 11px;
  }
}

/* Animation for countdown updates */
.arsvia-countdown-number {
  transition: all 0.2s ease;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .arsvia-countdown-box {
    border-width: 2px;
    border-color: #000;
  }
}

/* Button visibility control */
.dalyvauti-button {
  display: none; /* Hide by default, JavaScript will show when needed */
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .arsvia-countdown-number {
    transition: none;
  }
}
