body{
    background-color: #f0f0f0;
}

/* Subscription Timer Styles */
.subscription-timer {
    width: 180px;
    padding: 8px;
    border-radius: 4px;
    background-color: #f8f9fa;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
  }
  
  .timer-visual {
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 5px;
  }
  
  .timer-progress {
    height: 100%;
    width: 100%;
    background-color: #28a745;
    border-radius: 4px;
    transition: width 1s ease-in-out;
  }
  
  .timer-progress.warning {
    background-color: #ffc107;
  }
  
  .timer-progress.critical {
    background-color: #dc3545;
  }
  
  .timer-text {
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    color: #495057;
  }
  
  .timer-text.warning {
    color: #856404;
  }
  
  .timer-text.critical, 
  .timer-text.expired {
    color: #721c24;
  }
  
  /* Animation for the progress bar */
  @keyframes pulse {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0.6;
    }
    100% {
      opacity: 1;
    }
  }
  
  .timer-progress.pulse {
    animation: pulse 1s infinite;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .subscription-timer {
      width: 120px;
      padding: 5px;
    }
    
    .timer-text {
      font-size: 12px;
    }
  }
