
.c-chart-card {
    background: #343434;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    border-radius: 16px;
    margin-top: 2em;
    margin-bottom: 1em;
    padding: 1rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.c-chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.c-chart-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

.c-chart-legend {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.c-legend-item {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.3px;
}

.c-legend-diamond { color: rgba(255,255,255,0.55); font-size: 10px; }
.c-legend-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,0.4);
    display: inline-block;
}
.c-legend-dash { letter-spacing: 0; color: rgba(255,255,255,0.4); }
.c-legend-solid { color: rgba(255,255,255,0.4); }

.c-chart-toggles {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.c-boss-btn {
    padding: 5px 14px;
    border-radius: 20px;
    border: 1.5px solid var(--boss-color);
    background: transparent;
    color: var(--boss-color);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    cursor: pointer;
    opacity: 0.45;
    transition: background 0.15s ease, opacity 0.15s ease;
    font-family: inherit;
    white-space: nowrap;
}

.c-boss-btn.active {
    background: color-mix(in srgb, var(--boss-color) 18%, transparent);
    opacity: 1;
}

.c-boss-btn:hover {
    opacity: 1;
}

.c-btn-tag {
    font-size: 10px;
    opacity: 0.65;
    margin-left: 3px;
}

.c-chart-wrap {
    position: relative;
    width: 100%;
    height: 340px;
}

.c-chart-wrap canvas {
    width: 100% !important;
}

.c-no-data {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 1px;
}