/* Font Awesome already included in HTML via CDN */

/* Flyout Menu Container */
.flyout-menu {
    position: fixed;
    top: calc(50% + 20px);
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 9999;
    padding: 6px 0 6px 5px;
    background: rgba(51, 51, 51, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px 0 0 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Flyout Menu Links */
.flyout-menu a {
    background-color: rgba(51, 51, 51, 0.9);
    color: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px 0 0 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Hover Effect for Links */
.flyout-menu a:hover {
    background-color: rgba(204, 75, 36, 0.95);
    transform: translateX(-4px);
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
}

/* Icons inside Links */
.flyout-menu i {
    font-size: 14px;
    line-height: 1;
    opacity: 0.95;
}

/* Responsive for Mobile */
@media (max-width: 480px) {
    .flyout-menu a {
        width: 30px;
        height: 30px;
        background-color: rgba(51, 51, 51, 0.95);
    }

    .flyout-menu i {
        font-size: 13px;
    }
}
