.floating-action {
    position: fixed;
    bottom: 80px;
    right: max(16px, calc((100vw - 1554px) / 2 - 72px));
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    gap: 12px;
    background: #FADC44;
    border-radius: 9999px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.floating-action.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.floating-action-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 767px) {
    .floating-action {
        right: 16px;
        bottom: calc(80px + env(safe-area-inset-bottom, 0px));
        width: 44px;
        height: 44px;
        gap: 0;
    }

    .floating-action-icon {
        width: 16px;
        height: 16px;
    }
}
