/* Modern Countdown Component Styling */

/* Countdown container */
.countdown-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-family: inherit;
}

/* Countdown items */
.countdown-item {
  flex: 1;
  min-width: 80px;
  text-align: center;
  padding: 15px 10px;
  position: relative;
  font-family: inherit;
}

/* Create separator between countdown items */
.countdown-item:not(:last-child):after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background-color: #f0f0f0;
}

/* Number styling */
.countdown-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #3498db;
  line-height: 1;
  margin-bottom: 5px;
  font-family: inherit;
}

/* Label styling */
.countdown-label {
  margin-left: 15px;
  font-size: 0.9rem;
  color: #777;
  text-transform: uppercase;
  font-family: inherit;
}

/* RTL support */
body.rtl .countdown-wrapper {
  direction: rtl;
  font-family: inherit;
}

body.rtl .countdown-item:not(:last-child):after {
  right: auto;
  left: 0;
}

body.rtl .countdown-number,
body.rtl .countdown-label {
  font-family: inherit;
  margin-left: 15px !important;
}

/* Responsive design */
@media (max-width: 576px) {
  .countdown-item {
    min-width: auto;
  }
  
  .countdown-number {
    font-size: 1.8rem;
  }
} 