/* VK Chart Builder — shared chart label styles. */

/* Secondary percentage shown next to the value in "Value + percentage" mode.
   `fill` styles SVG data labels; `color` covers HTML (useHTML) contexts. */
.vk-chart-label-percent {
    fill: #888;
    color: #888;
}

/* Copy-link confirmation toast (shared across all chart types). */
.vk-chart-share-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    z-index: 100000;
    padding: 10px 18px;
    background: #333;
    color: #fff;
    font-size: 13px;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.vk-chart-share-toast--visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}