body{
    background-color: #f0f0f0;
}

.card{
  border: none !important;
}

/* 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;
    }
  }

    .system-resource-card {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
  }
  .system-resource-card .resource-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .system-resource-card .progress {
    border-radius: 4px;
  }
  .status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
  }
  .bg-light-primary {
    background-color: rgba(13, 110, 253, 0.15);
  }
  .bg-light-info {
    background-color: rgba(13, 202, 240, 0.15);
  }
  .bg-light-warning {
    background-color: rgba(255, 193, 7, 0.15);
  }
