/* CSS for Rating Distribution */
.cg-dist-container {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #f8f9fa; /* Light grey background */
    padding: 25px;
    border-radius: 12px;
}

/* Left Side: Big Score */
.cg-dist-summary {
    text-align: center;
    min-width: 120px;
}
.cg-dist-big-score {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    line-height: 1;
}
.cg-dist-stars {
    color: #f59e0b; /* Star Yellow */
    font-size: 20px;
    margin: 5px 0;
}
.cg-dist-total {
    font-size: 13px;
    color: #666;
}

/* Right Side: Progress Bars */
.cg-dist-bars {
    flex: 1;
    max-width: 500px;
}
.cg-dist-row {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    font-size: 14px;
    color: #555;
}
.cg-dist-star-label {
    width: 50px;
    font-weight: 500;
}
.cg-dist-bar-bg {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    margin: 0 12px;
    overflow: hidden;
}
.cg-dist-bar-fill {
    height: 100%;
    background: #f59e0b; /* Yellow Fill */
    border-radius: 4px;
}
.cg-dist-count {
    width: 30px;
    text-align: right;
    color: #777;
    font-size: 13px;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .cg-dist-container { flex-direction: column; gap: 20px; }
    .cg-dist-bars { width: 100%; }
}
