.menu-options {
    position: fixed;
    bottom: 40px;
    left: 220px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 8px;
    z-index: 1000;
    background-color: $primary-color;

    .option {
        display: flex;
        align-items: center;
        padding: 8px;
        cursor: pointer;
        color: $tertiary-text-color;

        &:hover {
            background-color: $secondary-color;
        }

        .icon {
            margin-right: 8px;
        }
    }
}