/* ARM Flyout Menu */
#arm-flyout-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
}
#arm-flyout-button {
    background-color: #0073aa;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease;
}
#arm-flyout-button:hover {
    transform: scale(1.1);
}
#arm-flyout-button .dashicons {
    font-size: 24px;
    line-height: 1;
}
#arm-flyout-content {
    position: absolute;
    bottom: 60px;
    right: 0;
    background-color: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
#arm-flyout-content.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#arm-flyout-content ul {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}
#arm-flyout-content li a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: #3c434a;
    transition: background-color 0.2s ease;
}
#arm-flyout-content li a:hover {
    background-color: #f0f0f1;
}
#arm-flyout-content li a .dashicons {
    margin-right: 10px;
    color: #787c82;
}