.vc-widget {
    width: 100%;
    max-width: 520px;
    margin: 8px auto;
    padding: 12px 10px;
    background: #1a1a1a;
    border: 1px solid #D93414;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #DB4D2A;
    font-size: 13px;
    line-height: 1.5;
    box-sizing: border-box;
}
.vc-widget .vc-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #DB4D2A;
    letter-spacing: 0.5px;
}
.vc-flags {
    display: grid;
    grid-template-columns: repeat(8, auto);
    justify-content: center;
    gap: 6px 10px;
    margin-bottom: 12px;
}
@media (max-width: 520px) {
    .vc-widget {
        max-width: 100%;
        padding: 12px 14px;
    }
    .vc-flags {
        grid-template-columns: repeat(6, 1fr);
        justify-content: stretch;
        gap: 6px 2px;
    }
    .vc-flag-row {
        gap: 1px;
    }
    .vc-flag-row .vc-flag {
        font-size: 14px;
    }
    .vc-flag-row .vc-code {
        font-size: 8px;
    }
    .vc-flag-row .vc-count {
        font-size: 9px;
    }
}
.vc-flag-row {
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}
.vc-flag-row .vc-flag {
    font-size: 16px;
    line-height: 1;
}
.vc-flag-row .vc-code {
    font-size: 9px;
    font-weight: 600;
    color: #999;
}
.vc-flag-row .vc-count {
    font-size: 11px;
    color: #ccc;
}
.vc-totals {
    border-top: 1px solid #333;
    padding-top: 8px;
}
.vc-totals .vc-row {
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
}
.vc-totals .vc-label {
    color: #888;
    font-size: 12px;
}
.vc-totals .vc-value {
    color: #DB4D2A;
    font-weight: 600;
    font-size: 12px;
}
.vc-loading {
    text-align: center;
    color: #666;
    padding: 20px 0;
}
