:root {
    --primary-color: #525952;
    --secondary-color: #625655;
    --background-color: #fff;
    --text-color: #333;
  }
  
  #countdown_timer_widget {
    text-align: center;
    margin-top: 20px;
    font-family: 'Noto Kufi';
    background-color: var(--background-color);
    border-radius: 8px;
   
  }
  #countdown_timer_widget {
    direction: ltr;
  }
  
  .countdown_timer_title {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 24px;
    color: var(--text-color);
    text-transform: uppercase;
  }
  
  .countdown_timer_numbers {
    font-size: 64px;
    display: grid;
    grid-auto-flow: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    animation: pulse 1s infinite;
  }
  
  .countdown_timer_numbers span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-width: 80px;
    background-color: var(--background-color);
    border-radius: 8px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s;
  }
  
  .countdown_timer_numbers span strong {
    font-size: 60px;
    font-weight: bold;
    color: var(--secondary-color);
  }
  
  .countdown_timer_numbers span small {
    font-size: 18px;
    text-transform: uppercase;
    color: var(--text-color);
  }
  
  .countdown_timer_numbers span:hover {
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .countdown_timer_numbers:hover span strong {
    color: var(--primary-color);
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  