/* 1. Base Floating Actions (Status 0 - Always Visible) */
.floating-actions {
    position: fixed;
    bottom: 95px;
    right: 25px;
    display: flex;
    gap: 12px;
    z-index: 9999;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

/* 2. Floating Wrapper (Status Else - The FAB) */
.floating-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 15px;
}

/* Share Tray - Hidden by Default */
.share-tray {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

/* Active State for Share Tray */
.share-tray.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Main Button Style */
.main-fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.5); /* Primary Blue Glass */
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

/* Common Action Button (Glass Style) */
.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    color: #040000;
    text-decoration: none;
}

/* Circle icons for the Tray */
.share-tray .action-btn {
    width: 50px;
    height: 50px;
    padding: 0;
}

.company-logo {
    max-height: 22px;
}
