#page-ai-launcher {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 10020;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 12px 20px;
    border: 0;
    border-radius: 23px;
    background: linear-gradient(to right, #F23047, #FE7007);
    color: #fff;
    font: 700 16px/20px AlbertaSans, Roboto, sans-serif;
    box-shadow: 0 4px 16px rgba(4, 30, 77, .16);
    cursor: pointer;
    transition: box-shadow .2s ease;
}

#page-ai-launcher > span {
    width: 18px;
    height: 20px;
    flex: 0 0 18px;
    background: url(/images/UI_icons/white/file_sparkle.svg) center / contain no-repeat;
}

#page-ai-launcher:hover {
    box-shadow: 0 6px 20px rgba(4, 30, 77, .24);
}

#page-ai-launcher:focus-visible {
    outline: 2px solid #f23047;
    outline-offset: 3px;
}

#page-ai-launcher:active {
    box-shadow: 0 2px 8px rgba(4, 30, 77, .16);
}

#page-ai-launcher:disabled {
    cursor: wait;
    opacity: .7;
}

@media (max-width: 620px) {
    #page-ai-launcher { z-index: 999; }
}
