#chevron-toggle-wrapper {
    position: fixed;
    top: calc(var(--header-height, 72px) - 6px);
    right: 0;
    z-index: 9999;
}

/* Core button */
.chevron-toggle {
    display: flex;
    align-items: center;
    gap: 6px;

    padding: 6px 10px 6px 8px;
    background: var(--accent, #111);
    color: #fff;

    border: none;
    border-radius: 0 0 0 10px;

    cursor: pointer;

    box-shadow: -2px 3px 10px rgba(0,0,0,.25);
    transition: all .25s ease;
}

/* Hover expansion */
.chevron-toggle:hover {
    padding-right: 14px;
}

/* Icon */
.chevron-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: transform .25s ease;
}

/* Label */
.chevron-label {
    font-size: 11px;
    white-space: nowrap;
    opacity: .9;
}

/* Hidden state */
.chevron-toggle.is-hidden .chevron-icon svg {
    transform: rotate(180deg);
}
