/* Styles for ACT Iframe Menu */
.act-iframe-menu {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    overflow: hidden;
    z-index: 2;
}

.act-iframe-menu button {
    background: none;
    border: none;
    color: white;
    padding: 5px 8px;
    cursor: pointer;
    font-size: 12px;
    transition: background-color 0.2s ease;
    text-align: right;
    width: 100%;
}

.act-iframe-menu button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.act-iframe-menu button:focus {
    outline: none;
}

.act-iframe-menu .hamburger {
    font-size: 16px;
    padding: 5px;
}