.service-tag {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.2rem 0.4rem;
}


        .dashboard-card {
            background: white;
            transition: all 0.3s ease;
            height: 100%;
            overflow: hidden;
            border: none;
        }

        .card-header {
            background: linear-gradient(120deg, #4b6cb7 0%, #182848 100%);
            color: white;
            border: none;
            padding: 1.2rem 1.5rem;
            font-weight: 600;
        }
        
        .card-icon {
            font-size: 2.5rem;
            margin-right: 15px;
            color: rgba(255,255,255,0.8);
        }
        
        .stats-container {
            padding: 1.5rem;
        }
        
        .stat-card {
            background: white;
            /* border-radius: 10px; */
            padding: 1.5rem;
            text-align: center;
            /* box-shadow: 0 4px 8px rgba(0,0,0,0.05); */
            transition: all 0.3s ease;
            margin-bottom: 20px;
        }
        
        
        .stat-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            margin: 10px 0;
            color: var(--primary);
        }
        
        .progress {
            height: 12px;
            border-radius: 10px;
            margin: 15px 0;
        }
        
        .system-img {
            /* border-radius: 10px; */
            /* box-shadow: 0 5px 15px rgba(0,0,0,0.1); */
            transition: all 0.3s ease;
            margin-bottom: 20px;
        }
        
        
        .integration-badge {
            font-size: 0.85rem;
            padding: 0.5em 0.8em;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
            background: linear-gradient(120deg, #3498db, #2c3e50);
            color: white;
        }
        
        .feature-list li {
            padding: 0.5rem 0;
            border-bottom: 1px dashed #eee;
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .feature-list i {
            color: var(--success);
            margin-right: 10px;
        }
        
        .table th {
            background: linear-gradient(120deg, #4b6cb7 0%, #182848 100%);
            color: white;
        }

        .system-diagram {
            background: white;
            /* border-radius: 12px; */
            /* padding: 20px; */
            /* box-shadow: 0 6px 15px rgba(0,0,0,0.08); */
        }
        
        .diagram-title {
            text-align: center;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary);
            border-bottom: 2px solid var(--primary);
            padding-bottom: 10px;
        }
        
        .integration-node {
            text-align: center;
            padding: 15px;
            background: linear-gradient(120deg, #3498db, #2c3e50);
            color: white;
            /* border-radius: 8px; */
            margin-bottom: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .integration-node i {
            font-size: 2rem;
            margin-bottom: 10px;
        }
        
        .connector {
            height: 30px;
            width: 4px;
            background: #3498db;
            margin: 0 auto 20px;
        }