.academix-floating-button {
    position: fixed;
    top: 140px;
    padding: 8px;
    background-color: #fea500 !important;
    color: white;
    border: 1px solid #fea500 !important;
    cursor: pointer;
    transition: all 0.2s ease, left 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: 2px 0px 5px rgba(0,0,0,0.1);
    z-index: 10;
    will-change: left, transform;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
}

.academix-floating-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.academix-floating-button:hover {
    background-color: #fe9000 !important;
}

.academix-floating-button:active {
    background-color: #fe9000 !important;
}

.academix-floating-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}

body.lms-side-panel-close .academix-floating-button svg {
    transform: rotate(180deg);
}

[data-balloon][data-balloon-pos="right"]::after {
    z-index: 9999;
}

[data-balloon][data-balloon-pos="left"]::after {
    z-index: 9999;
}

@media (max-width: 1024px) {
    .academix-floating-button {
        transition: all 0.15s linear, left 0.15s linear;
    }
}