.eps-summary-card {
    border-left: 4px solid #1e88e5;
}

.eps-distribution {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(30, 136, 229, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(30, 136, 229, 0.1);
}

.distribution-bars {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.distribution-item {
    display: grid;
    grid-template-columns: 80px 1fr 40px;
    gap: 0.75rem;
    align-items: center;
}

.distribution-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--rz-text-secondary-color);
    text-align: right;
}

.distribution-bar {
    height: 8px;
    background: rgba(0,0,0,0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.distribution-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.6s ease;
    position: relative;
}

.distribution-fill.excellent {
    background: linear-gradient(90deg, #4caf50, #66bb6a);
}

.distribution-fill.good {
    background: linear-gradient(90deg, #2196f3, #42a5f5);
}

.distribution-fill.regular {
    background: linear-gradient(90deg, #ff9800, #ffb74d);
}

.distribution-fill.bad {
    background: linear-gradient(90deg, #ff5722, #ff7043);
}

.distribution-fill.critical {
    background: linear-gradient(90deg, #f44336, #e57373);
}

.distribution-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--rz-text-color);
    text-align: center;
}

/* Dark theme adjustments */
.rz-dark .eps-distribution {
    background: rgba(30, 136, 229, 0.1);
    border-color: rgba(30, 136, 229, 0.2);
}

.rz-dark .distribution-bar {
    background: rgba(255,255,255,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .distribution-item {
        grid-template-columns: 60px 1fr 30px;
        gap: 0.5rem;
    }
    
    .distribution-label {
        font-size: 0.7rem;
    }
    
    .distribution-value {
        font-size: 0.8rem;
    }
} 