.a-togglebar {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    padding: 3px;
    gap: 2px;
}

.a-togglebar-btn {
    padding: 5px 14px;
    border: none;
    background: transparent;
    color: #555;
    cursor: pointer;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
    line-height: 1.4;
}

.a-togglebar-btn.a-togglebar-active {
    background: #2c6fad;
    color: white;
}

.a-togglebar-btn:hover:not(.a-togglebar-active) {
    background: rgba(0, 0, 0, 0.08);
    color: #222;
}

.a-togglebar-label {
    font-size: 13px;
    font-weight: 500;
    color: #555;
    padding: 5px 10px;
}

.a-buttonbar-scroll .a-togglebar {
    background: rgba(255, 255, 255, 0.12);
}

.a-buttonbar-scroll .a-togglebar-btn {
    color: rgba(255, 255, 255, 0.75);
}

.a-buttonbar-scroll .a-togglebar-btn.a-togglebar-active {
    background: white;
    color: #111;
}

.a-buttonbar-scroll .a-togglebar-btn:hover:not(.a-togglebar-active) {
    background: rgba(255, 255, 255, 0.18);
    color: white;
}

.a-buttonbar-scroll .a-togglebar-label {
    color: rgba(255, 255, 255, 0.85);
}
